From 8d58ac7f215862d5717d84ae01a91ac6a4e894fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Baptiste=20Blambert=20Demini=C3=A8re?= Date: Mon, 7 Jul 2025 00:38:24 +0200 Subject: [PATCH] fix: incantation print --- Server/Game/Commands/IncantationCommand.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Server/Game/Commands/IncantationCommand.cpp b/Server/Game/Commands/IncantationCommand.cpp index 3a37f44..7a5209e 100644 --- a/Server/Game/Commands/IncantationCommand.cpp +++ b/Server/Game/Commands/IncantationCommand.cpp @@ -140,7 +140,8 @@ void zappy::game::CommandHandler::incantationPrinting(zappy::game::ServerPlayer { std::string guiMsg = "pic " + std::to_string(player.x) + " " + std::to_string(player.y) + " " + - std::to_string(player.level); + std::to_string(player.level) + " #" + + std::to_string(player.getId()); auto otherPlayers = this->_getPlayersForIncant(player.x, player.y, player.level);