From 6c57258c6628886adb6e13ad7b345c4adca5d902 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Br=C3=BCbach?= Date: Fri, 5 Jun 2026 20:39:58 +0200 Subject: [PATCH] Fix emitting slot instead of signal. Took 15 minutes --- cockatrice/src/game/game_scene.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cockatrice/src/game/game_scene.cpp b/cockatrice/src/game/game_scene.cpp index c1156989e..dc33e854f 100644 --- a/cockatrice/src/game/game_scene.cpp +++ b/cockatrice/src/game/game_scene.cpp @@ -413,7 +413,7 @@ void GameScene::deleteArrow(int playerId, int arrowId) void GameScene::requestArrowDeletion(int playerId, int arrowId) { if (arrowRegistry.contains(playerId, arrowId)) { - emit requestArrowDeletion(playerId, arrowId); + emit arrowDeletionRequested(playerId, arrowId); } }