diff options
author | Vincent-Michael <Vincent_Michael@gmx.de> | 2014-08-24 02:22:14 +0200 |
---|---|---|
committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2014-08-24 02:22:14 +0200 |
commit | 560048cf338e539c68d8e33f7268dfe64a9b6f43 (patch) | |
tree | 2f27c7dc82c38388044d8f842895d097ecaf4f24 /src/server/game/Conditions/ConditionMgr.cpp | |
parent | 547115476f363096483197863e8bbc24064a99ef (diff) |
Core: meh, fix build and warnings
Diffstat (limited to 'src/server/game/Conditions/ConditionMgr.cpp')
-rw-r--r-- | src/server/game/Conditions/ConditionMgr.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/server/game/Conditions/ConditionMgr.cpp b/src/server/game/Conditions/ConditionMgr.cpp index 34ed979291b..739a373dbf0 100644 --- a/src/server/game/Conditions/ConditionMgr.cpp +++ b/src/server/game/Conditions/ConditionMgr.cpp @@ -227,6 +227,8 @@ bool Condition::Meets(ConditionSourceInfo& sourceInfo) case TYPEID_GAMEOBJECT: condMeets &= object->ToGameObject()->GetDBTableGUIDLow() == ConditionValue3; break; + default: + break; } } } |