X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fgame.c;h=643d36e5840230e1389bb7c911d79151726d70e2;hb=a5f00662e9ad7f9d093a417ca05c473939b99108;hp=af43302f25dcf17a14fcbebab8b6f5494371a602;hpb=3eb1f495b52103c63f681897e4129fafb6b5a94a;p=rocksndiamonds.git diff --git a/src/game.c b/src/game.c index af43302f..643d36e5 100644 --- a/src/game.c +++ b/src/game.c @@ -15639,15 +15639,21 @@ void RequestRestartGame(char *message) boolean has_started_game = hasStartedNetworkGame(); int request_mode = (has_started_game ? REQ_ASK : REQ_CONFIRM); + int door_state = DOOR_CLOSE_1; - if (Request(message, request_mode | REQ_STAY_CLOSED) && has_started_game) + if (Request(message, request_mode | REQ_STAY_OPEN) && has_started_game) { + CloseDoor(door_state); + StartGameActions(network.enabled, setup.autorecord, level.random_seed); } else { - // needed in case of envelope request to close game panel - CloseDoor(DOOR_CLOSE_1); + // if game was invoked from level editor, also close tape recorder door + if (level_editor_test_game) + door_state = DOOR_CLOSE_ALL; + + CloseDoor(door_state); SetGameStatus(GAME_MODE_MAIN);