aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Conditions/ConditionMgr.cpp
diff options
context:
space:
mode:
authorjackpoz <giacomopoz@gmail.com>2020-06-26 23:28:33 +0200
committerjackpoz <giacomopoz@gmail.com>2020-06-26 23:37:52 +0200
commit54c701cf0db81c0062e8c5020e07db18984d0ffa (patch)
tree20ae8c2d51f4868970788417fdda90cb1fb9bc9c /src/server/game/Conditions/ConditionMgr.cpp
parent49da3533cd4a0fcd8b2ac7ae0bf4b105f40f8c77 (diff)
Core/Common: Replace ASSERT(false, "...") with ABORT_MSG("...")
Diffstat (limited to 'src/server/game/Conditions/ConditionMgr.cpp')
-rw-r--r--src/server/game/Conditions/ConditionMgr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Conditions/ConditionMgr.cpp b/src/server/game/Conditions/ConditionMgr.cpp
index bfc4f5b1182..0cfa9e9a71d 100644
--- a/src/server/game/Conditions/ConditionMgr.cpp
+++ b/src/server/game/Conditions/ConditionMgr.cpp
@@ -729,7 +729,7 @@ uint32 Condition::GetSearcherTypeMaskForCondition() const
mask |= GRID_MAP_TYPE_MASK_PLAYER;
break;
default:
- ASSERT(false && "Condition::GetSearcherTypeMaskForCondition - missing condition handling!");
+ ABORT_MSG("Condition::GetSearcherTypeMaskForCondition - missing condition handling!");
break;
}
return mask;