From a2d6e7ff8c95e688adc625c01387af2ca3cde3a0 Mon Sep 17 00:00:00 2001 From: Rat Date: Sat, 5 Jun 2010 19:13:00 +0200 Subject: [PATCH] fixed warning in conditions thx to JohnHoliver --HG-- branch : trunk --- src/game/ConditionMgr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/ConditionMgr.h b/src/game/ConditionMgr.h index ebb7d2bb0a6..bc2ce8d01a2 100644 --- a/src/game/ConditionMgr.h +++ b/src/game/ConditionMgr.h @@ -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 ConditionList;