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); } }