From bf509e07fe1aca00cf0a8a0bf21d24909ad172df Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Sun, 9 May 2021 13:49:46 +0300 Subject: [PATCH 41/41] Send packet_game_load with load_successful as FALSE when load failed The packet was sent with load_successful always set to TRUE See osdn #42189 Signed-off-by: Marko Lindqvist --- server/stdinhand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/stdinhand.c b/server/stdinhand.c index 76a1d7dd4e..d78f49fef6 100644 --- a/server/stdinhand.c +++ b/server/stdinhand.c @@ -3773,7 +3773,7 @@ bool load_command(struct connection *caller, const char *filename, bool check, log_error("Error loading savefile '%s': %s", arg, secfile_error()); cmd_reply(CMD_LOAD, caller, C_FAIL, _("Could not load savefile: %s"), arg); - dlsend_packet_game_load(game.est_connections, TRUE, arg); + dlsend_packet_game_load(game.est_connections, FALSE, arg); return FALSE; } -- 2.30.2