From 9be65dc96d313353d11674586a618b48ce16ed31 Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Thu, 29 Mar 2018 23:46:21 +0100 Subject: [PATCH] Fix use of wrong veh tile for station animation/trigger in through load --- src/economy.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/economy.cpp b/src/economy.cpp index 018a291e64..6adf5c2a99 100644 --- a/src/economy.cpp +++ b/src/economy.cpp @@ -1941,8 +1941,8 @@ static void LoadUnloadVehicle(Vehicle *front) if (anything_loaded || anything_unloaded) { if (front->type == VEH_TRAIN) { - TriggerStationRandomisation(st, front->tile, SRT_TRAIN_LOADS); - TriggerStationAnimation(st, front->tile, SAT_TRAIN_LOADS); + TriggerStationRandomisation(st, station_tile, SRT_TRAIN_LOADS); + TriggerStationAnimation(st, station_tile, SAT_TRAIN_LOADS); } }