From 243b15330967f86df0284f8abb8226f2bcdf19c0 Mon Sep 17 00:00:00 2001 From: Persson-dev Date: Mon, 18 Jul 2022 11:51:52 +0200 Subject: [PATCH] remove unsed variable --- src/game/server/ServerGame.cpp | 1 - 1 file changed, 1 deletion(-) 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);