X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fgame.c;h=d91d8ac3ec629de5625ce29485531dba7c64bfa9;hb=091fb8657b4a793fb753c58fff21dbd2458c419f;hp=2ae8886f5c6d7fe80f49c4676c4ccc7568240b21;hpb=894166c9259ba08cd327cd40cb27929177ce98f7;p=rocksndiamonds.git diff --git a/src/game.c b/src/game.c index 2ae8886f..d91d8ac3 100644 --- a/src/game.c +++ b/src/game.c @@ -15668,6 +15668,10 @@ static char *getRestartGameMessage(void) char *game_over_text = "Game over!"; char *play_again_text = " Play it again?"; + if (level.game_engine_type == GAME_ENGINE_TYPE_MM && + game_mm.game_over_message != NULL) + game_over_text = game_mm.game_over_message; + snprintf(message, MAX_OUTPUT_LINESIZE, "%s%s", game_over_text, (play_again ? play_again_text : ""));