Fix emitting slot instead of signal.

Took 15 minutes
This commit is contained in:
Lukas Brübach 2026-06-05 20:39:58 +02:00
parent 92036eaf4c
commit 6c57258c66

View file

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