From 1a1148c24715f958e172d4961b54990dbfea0932 Mon Sep 17 00:00:00 2001 From: peter1138 Date: Fri, 14 Apr 2006 15:58:38 +0000 Subject: [PATCH] (svn r4414) - NewGRF: Don't execute sprite replacements (action 0x0A) in the initialization stage. --- newgrf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newgrf.c b/newgrf.c index 6f9b7ec2b5..c9e0eae426 100644 --- a/newgrf.c +++ b/newgrf.c @@ -2491,7 +2491,7 @@ static void DecodeSpecialSprite(uint num, uint stage) * in an earlier stage than associating, so... We just process actions * 1 and 2 in stage 1 now, let's hope that won't get us into problems. * --pasky */ - uint32 action_mask = (stage == 0) ? 0x0001FF40 : 0x0001FFBF; + uint32 action_mask = (stage == 0) ? 0x0001FB40 : 0x0001FFBF; static const SpecialSpriteHandler handlers[] = { /* 0x00 */ VehicleChangeInfo, /* 0x01 */ NewSpriteSet,