diff options
Diffstat (limited to 'src/gamestate')
-rw-r--r-- | src/gamestate/GameState.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gamestate/GameState.cpp b/src/gamestate/GameState.cpp index aaeecb1..7b6734f 100644 --- a/src/gamestate/GameState.cpp +++ b/src/gamestate/GameState.cpp @@ -40,7 +40,7 @@ void GameState::Update() { break; case 0x0D: g_Difficulty = packet.GetField(0).GetUByte(); - std::cout << "Difficulty now is " << (int) g_Difficulty << std::endl; + LOG(INFO) << "Difficulty now is " << (int) g_Difficulty; break; case 0x43: g_SpawnPosition = packet.GetField(0).GetPosition(); |