diff --git a/src/game/server/ServerGame.cpp b/src/game/server/ServerGame.cpp index 74dcd39..1df32ed 100644 --- a/src/game/server/ServerGame.cpp +++ b/src/game/server/ServerGame.cpp @@ -40,7 +40,6 @@ void ServerGame::StartGame() { void ServerGame::InitPlayerStats() { static const unsigned int START_GOLD = 100; static const unsigned int START_EXP = 0; - static const unsigned int START_GOLD_PER_SEC = 5; for (auto& [id, player] : m_Server->GetPlayers()) { player.SetGold(START_GOLD); player.SetExp(START_EXP);