Skip to content

Commit

Permalink
Fix set gong time command.
Browse files Browse the repository at this point in the history
  • Loading branch information
ratkosrb committed Dec 23, 2023
1 parent a3684c7 commit 9925890
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/game/Commands/ServerCommands.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1991,7 +1991,7 @@ bool ChatHandler::HandleWarEffortSetGongTimeCommand(char* args)
return false;

sObjectMgr.SetSavedVariable(VAR_WE_GONG_TIME, gongTime, true);
PSendSysMessage("War effort gong ring time set to '%s' (%u).", TimeToTimestampStr(gongTime), gongTime);
PSendSysMessage("War effort gong ring time set to '%s' (%u).", TimeToTimestampStr(gongTime).c_str(), gongTime);
sGameEventMgr.Update();

return true;
Expand Down

0 comments on commit 9925890

Please sign in to comment.