Skip to content

Commit

Permalink
Core/Commands: missing change from previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Star-lion committed Aug 6, 2012
1 parent 81fc922 commit 9795498
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/scripts/Commands/cs_modify.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1040,7 +1040,7 @@ class modify_commandscript : public CommandScript
if (addmoney >=MAX_MONEY_AMOUNT)
target->SetMoney(MAX_MONEY_AMOUNT);
else
target->ModifyMoney(addmoney);
target->ModifyMoney(int64(addmoney));
}

sLog->outDetail(handler->GetTrinityString(LANG_NEW_MONEY), moneyuser, uint32(addmoney), target->GetMoney());
Expand Down

0 comments on commit 9795498

Please sign in to comment.