# HG changeset patch # User peter1138 # Date 1357844302 0 # Node ID 60c0895a16f375558d0aa8c8d4bb318be000ec14 # Parent 36413e71489b554425384e69c84debfae75237b6 (svn r24903) -Fix: Cached station animation triggers were only set when removing parts of a station. diff --git a/src/newgrf_station.cpp b/src/newgrf_station.cpp --- a/src/newgrf_station.cpp +++ b/src/newgrf_station.cpp @@ -730,6 +730,8 @@ st->speclist[i].spec = statspec; st->speclist[i].grfid = statspec->grf_prop.grffile->grfid; st->speclist[i].localidx = statspec->grf_prop.local_id; + + StationUpdateAnimTriggers(st); } return i;