Core/Quests: Correct use of parenthesis in IsAutoComplete and IsAutoAccept

Closes #5195
This commit is contained in:
Matthew Goff
2012-02-11 22:26:53 +00:00
committed by Nay
parent cf9e183e25
commit b0145e3b39
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -319,7 +319,7 @@ bool Condition::Meets(ConditionSourceInfo& sourceInfo)
}
case CONDITION_PHASEMASK:
{
condMeets = (bool)(object->GetPhaseMask() & mConditionValue1);
condMeets = object->GetPhaseMask() & mConditionValue1;
break;
}
default:
+2 -2
View File
@@ -212,12 +212,12 @@ int32 Quest::GetRewOrReqMoney() const
bool Quest::IsAutoAccept() const
{
return sWorld->getBoolConfig(CONFIG_QUEST_IGNORE_AUTO_ACCEPT) ? false : Flags & QUEST_FLAGS_AUTO_ACCEPT;
return sWorld->getBoolConfig(CONFIG_QUEST_IGNORE_AUTO_ACCEPT) ? false : (Flags & QUEST_FLAGS_AUTO_ACCEPT);
}
bool Quest::IsAutoComplete() const
{
return sWorld->getBoolConfig(CONFIG_QUEST_IGNORE_AUTO_COMPLETE) ? false : Method == 0 || HasFlag(QUEST_FLAGS_AUTOCOMPLETE);
return sWorld->getBoolConfig(CONFIG_QUEST_IGNORE_AUTO_COMPLETE) ? false : (Method == 0 || HasFlag(QUEST_FLAGS_AUTOCOMPLETE));
}
bool Quest::IsAllowedInRaid() const