We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a6165f commit 784d7ebCopy full SHA for 784d7eb
1 file changed
src/core/game.h
@@ -122,7 +122,7 @@ void game_next(Game *game) {
122
respond_all_chat("Will the dynamite explode?");
123
dynamite_judge(game, player->id);
124
died_player(game, -1, player->id);
125
- if (game->finished) return;
+ if (game->finished || player->hp <= 0) return;
126
}
127
if (player->jail != NULL) {
128
DEBUG_PRINT("judge: jail\n");
0 commit comments