diff --git a/src/newgrf_industrytiles.cpp b/src/newgrf_industrytiles.cpp index ae69591d50..6a28d350eb 100644 --- a/src/newgrf_industrytiles.cpp +++ b/src/newgrf_industrytiles.cpp @@ -182,7 +182,9 @@ void IndustryDrawTileLayout(const TileInfo *ti, const SpriteGroup *group, byte r if (IS_CUSTOM_SPRITE(image)) image += stage; if (HASBIT(image, PALETTE_MODIFIER_COLOR)) { - pal = GENERAL_SPRITE_COLOR(rnd_color); + if (pal == 0) { + pal = GENERAL_SPRITE_COLOR(rnd_color); + } } else { pal = PAL_NONE; }