mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-22 02:04:52 +01:00
Core: Removed more operator workarounds for ACE_Singleton (missed previously because of inconsistent naming)
--HG-- branch : trunk
This commit is contained in:
@@ -202,7 +202,7 @@ int32 Quest::GetRewOrReqMoney() const
|
||||
if (RewOrReqMoney <= 0)
|
||||
return RewOrReqMoney;
|
||||
|
||||
return int32(RewOrReqMoney * sWorld.getRate(RATE_DROP_MONEY));
|
||||
return int32(RewOrReqMoney * sWorld->getRate(RATE_DROP_MONEY));
|
||||
}
|
||||
|
||||
bool Quest::IsAllowedInRaid() const
|
||||
@@ -210,5 +210,5 @@ bool Quest::IsAllowedInRaid() const
|
||||
if (IsRaidQuest())
|
||||
return true;
|
||||
|
||||
return sWorld.getBoolConfig(CONFIG_QUEST_IGNORE_RAID);
|
||||
return sWorld->getBoolConfig(CONFIG_QUEST_IGNORE_RAID);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user