From ac699de412d41a20f8e2d3e5790f855144a837db Mon Sep 17 00:00:00 2001 From: Kelsi Date: Fri, 6 Feb 2026 19:53:52 -0800 Subject: [PATCH] Fix PLAYER_FIELD_COINAGE to correct index 1170 --- src/game/game_handler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/game_handler.cpp b/src/game/game_handler.cpp index 9a704df7..6d21dc8c 100644 --- a/src/game/game_handler.cpp +++ b/src/game/game_handler.cpp @@ -2675,7 +2675,7 @@ void GameHandler::handleUpdateObject(network::Packet& packet) { if (ch.guid == playerGuid) { ch.level = val; break; } } } - else if (key == 1219) { playerMoneyCopper_ = val; } // PLAYER_FIELD_COINAGE + else if (key == 1170) { playerMoneyCopper_ = val; } // PLAYER_FIELD_COINAGE } if (applyInventoryFields(block.fields)) slotsChanged = true; if (slotsChanged) rebuildOnlineInventory(); @@ -2768,7 +2768,7 @@ void GameHandler::handleUpdateObject(network::Packet& packet) { } } } - else if (key == 1219) { + else if (key == 1170) { playerMoneyCopper_ = val; LOG_INFO("Money updated via VALUES: ", val, " copper"); }