mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-02-01 22:56:39 +01:00
fixed warning in conditions thx to JohnHoliver
--HG-- branch : trunk
This commit is contained in:
@@ -110,7 +110,7 @@ struct Condition
|
||||
ErrorTextd = 0;
|
||||
}
|
||||
bool Meets(Player * player, Unit* targetOverride = NULL);
|
||||
bool isLoaded() { return mConditionType > CONDITION_SOURCE_TYPE_NONE || mReferenceId; }
|
||||
bool isLoaded() { return mConditionType > CONDITION_NONE || mReferenceId; }
|
||||
};
|
||||
|
||||
typedef std::list<Condition*> ConditionList;
|
||||
|
||||
Reference in New Issue
Block a user