mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-20 09:17:36 +01:00
Core/SAI: Fix event phases when phase > 2
Again, phase ids != phase masks
This commit is contained in:
@@ -222,7 +222,7 @@ class SmartScript
|
||||
}
|
||||
|
||||
void DecPhase(int32 p = 1) { mEventPhase -= (mEventPhase < (uint32)p ? (uint32)p - mEventPhase : (uint32)p); }
|
||||
bool IsInPhase(uint32 p) const { return mEventPhase & p; }
|
||||
bool IsInPhase(uint32 p) const { return (1 << (mEventPhase - 1)) & p; }
|
||||
void SetPhase(uint32 p = 0) { mEventPhase = p; }
|
||||
|
||||
SmartAIEventList mEvents;
|
||||
|
||||
Reference in New Issue
Block a user