diff --git a/src/gestalt_graphics/graphics_constants.py b/src/gestalt_graphics/graphics_constants.py index c54affae7..48e9159c8 100644 --- a/src/gestalt_graphics/graphics_constants.py +++ b/src/gestalt_graphics/graphics_constants.py @@ -488,7 +488,7 @@ } livestock_livery_recolour_map = body_recolour_CC1 -mineral_covered_hopper_car_livery_recolour_map = { +lime_hopper_car_livery_recolour_map = { # note that this very specifically recolours hand-drawn pixels to magic purple # this is to prevent these spriterows being incorrectly recoloured to 'weathered' due to the way the graphics pipeline works # these purple pixels are then reset to original when the weathered recolour map is applied @@ -496,7 +496,7 @@ 19: 139, 22: 142, } -mineral_covered_hopper_car_livery_recolour_map_weathered = { +lime_hopper_car_livery_recolour_map_weathered = { 18: 115, 19: 116, 22: 120, diff --git a/src/train.py b/src/train.py index 5fdbc1872..461a143c1 100755 --- a/src/train.py +++ b/src/train.py @@ -6571,8 +6571,8 @@ def __init__(self, **kwargs): self.use_named_buyable_variant_group = "wagon_group_lime_covered_hopper_cars" # Graphics configuration weathered_variants = { - "unweathered": graphics_constants.mineral_covered_hopper_car_livery_recolour_map, - "weathered": graphics_constants.mineral_covered_hopper_car_livery_recolour_map_weathered, + "unweathered": graphics_constants.lime_hopper_car_livery_recolour_map, + "weathered": graphics_constants.lime_hopper_car_livery_recolour_map_weathered, } self.gestalt_graphics = GestaltGraphicsSimpleBodyColourRemaps( weathered_variants=weathered_variants,