public
Description: WoW Addon - Handles all your mount & travel-form needs
Homepage: http://www.tekkub.net/
Clone URL: git://github.com/tekkub/mountme.git
Click here to lend your support to: mountme and make a donation at www.pledgie.com !
Fix pvp suspend error
tekkub (author)
Thu Apr 17 23:21:48 -0700 2008
commit  360058c0314e872d2f9a77e5ac67b56b8e2fa25b
tree    ee63f9199a565110f6ae145744a99db5540cea7b
parent  93f8d1f56ef78cf925d052950e2cedb293a9d850
...
119
120
121
122
123
 
 
124
125
126
...
119
120
121
 
 
122
123
124
125
126
0
@@ -119,8 +119,8 @@ end
0
 function MountMe:IsSuspended()
0
   -- While you can switch trinkets while inside an arena, you cannot once the match starts so we're disabled when inside arenas no matter what
0
   local _, instanceType = IsInInstance()
0
- if self.db.profile.PvPsuspend and UnitIsPVP("player")
0
- or self.db.profile.BGsuspend and instanceType == "pvp"
0
+ if self.db.PvPsuspend and UnitIsPVP("player")
0
+ or self.db.BGsuspend and instanceType == "pvp"
0
     or instanceType == "arena" then return true end
0
 end
0
 

Comments

    No one has commented yet.