diff options
author | Vincent-Michael <Vincent_Michael@gmx.de> | 2014-08-24 18:08:29 +0200 |
---|---|---|
committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2014-08-24 18:08:29 +0200 |
commit | 4a58341e6db4ffb26356cfd7af90385de94128ff (patch) | |
tree | daa52989e7e37c11f77ec447f28f8314958e74c0 /src | |
parent | b086b2120710b6cffe25d0f1e588898b05768b67 (diff) |
Core: Fix warnings
Diffstat (limited to 'src')
-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 948dc9b7cb3..03051451193 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; } } } |