From 117eb6637dbbb74e93cd3e0951fb81b263dd850c Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Mon, 6 Dec 2021 18:30:46 +0000 Subject: [PATCH] Fix OrderBackup::Reset in non-GUI case See: https://github.com/OpenTTD/OpenTTD/issues/9735 --- src/order_backup.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/order_backup.cpp b/src/order_backup.cpp index 2b5da6acb9..e12a407edb 100644 --- a/src/order_backup.cpp +++ b/src/order_backup.cpp @@ -216,8 +216,8 @@ CommandCost CmdClearOrderBackup(TileIndex tile, DoCommandFlag flags, uint32 p1, uint32 user = _networking && !_network_server ? _network_own_client_id : CLIENT_ID_SERVER; for (OrderBackup *ob : OrderBackup::Iterate()) { - /* If it's not a backup of us, ignore it. */ - if (ob->user != user) continue; + /* If this is a GUI action, and it's not a backup of us, ignore it. */ + if (from_gui && ob->user != user) continue; /* If it's not for our chosen tile either, ignore it. */ if (t != INVALID_TILE && t != ob->tile) continue;