Core/Misc: Misc fixes

This commit is contained in:
hondacrx
2018-05-08 15:36:57 -04:00
parent f26f7a4348
commit 6224c4f6be
4 changed files with 6 additions and 8 deletions
+1 -3
View File
@@ -266,9 +266,7 @@ namespace Game
public bool ModifyReputation(FactionRecord factionEntry, int standing, bool noSpillover = false) { return SetReputation(factionEntry, standing, true, noSpillover); }
bool SetReputation(FactionRecord factionEntry, int standing) { return SetReputation(factionEntry, standing, false, false); }
public bool SetReputation(FactionRecord factionEntry, int standing, bool incremental = true, bool noSpillover = false)
public bool SetReputation(FactionRecord factionEntry, int standing, bool incremental = false, bool noSpillover = false)
{
Global.ScriptMgr.OnPlayerReputationChange(_player, factionEntry.Id, standing, incremental);
bool res = false;