Changeset - r28828:76c6b8ce3c7c
[Not reviewed]
master
0 1 0
Loïc Guilloux - 2 months ago 2024-02-27 20:25:49
glx22@users.noreply.github.com
Fix f6dd505: Missing savegame conversion for current_order (#12188)
1 file changed with 5 insertions and 0 deletions:
0 comments (0 inline, 0 general)
src/saveload/afterload.cpp
Show inline comments
 
@@ -1771,6 +1771,11 @@ bool AfterLoadGame()
 
			if (!order->IsType(OT_GOTO_DEPOT)) continue;
 
			order->SetDepotActionType((OrderDepotActionFlags)(order->GetDepotActionType() >> 1));
 
		}
 

	
 
		for (Vehicle *v : Vehicle::Iterate()) {
 
			if (!v->current_order.IsType(OT_GOTO_DEPOT)) continue;
 
			v->current_order.SetDepotActionType((OrderDepotActionFlags)(v->current_order.GetDepotActionType() >> 1));
 
		}
 
	}
 

	
 
	/* The water class was moved/unified. */
0 comments (0 inline, 0 general)