diff --git a/code/modules/overmap/overmap_hazards.dm b/code/modules/overmap/overmap_hazards.dm index cac2934544d..33dabd4a5b5 100644 --- a/code/modules/overmap/overmap_hazards.dm +++ b/code/modules/overmap/overmap_hazards.dm @@ -61,7 +61,7 @@ /datum/overmap_object/hazard/asteroid name = "asteroid field" - hazard_color = COLOR_RED + hazard_color = "#FB3A18" visual_type = /obj/effect/abstract/overmap/hazard/opaque /datum/overmap_object/hazard/asteroid/process(delta_time) @@ -214,7 +214,6 @@ /datum/overmap_object/hazard/ion_storm name = "ion storm" - hazard_color = LIGHT_COLOR_ELECTRIC_CYAN #define ION_STORM_SHIELD_DRAIN_PER_PROCESS 0.75 @@ -231,7 +230,7 @@ /datum/overmap_object/hazard/carp_school name = "carp school" - hazard_color = LIGHT_COLOR_PURPLE + hazard_color = COLOR_LIGHT_PINK /datum/overmap_object/hazard/carp_school/process(delta_time) for(var/i in affected_shuttles) diff --git a/code/modules/overmap/overmap_ore_rock.dm b/code/modules/overmap/overmap_ore_rock.dm index 790f3cbc205..2e391c21799 100644 --- a/code/modules/overmap/overmap_ore_rock.dm +++ b/code/modules/overmap/overmap_ore_rock.dm @@ -25,9 +25,9 @@ qdel(src) /obj/effect/abstract/overmap/ore_rock - icon_state = "smallcircle" + icon_state = "ore_asteroid1" layer = OVERMAP_LAYER_LOOT - color = LIGHT_COLOR_PURPLE + color = "#FB3A18" /datum/overmap_object/transportable/ore_loot name = "ore chunks" @@ -45,4 +45,4 @@ /obj/effect/abstract/overmap/ore_loot icon_state = "smallobject" layer = OVERMAP_LAYER_LOOT - color = LIGHT_COLOR_PURPLE + color = "#FB3A18" diff --git a/code/modules/overmap/overmap_visuals.dm b/code/modules/overmap/overmap_visuals.dm index aa309877e07..25e52b59fe1 100644 --- a/code/modules/overmap/overmap_visuals.dm +++ b/code/modules/overmap/overmap_visuals.dm @@ -65,7 +65,7 @@ shuttle_backward_state = "station" /obj/effect/abstract/overmap/shuttle/ship - color = LIGHT_COLOR_ELECTRIC_CYAN + color = COLOR_WHITE layer = OVERMAP_LAYER_SHIP icon_state = "ship" shuttle_idle_state = "ship" diff --git a/icons/overmap/overmap.dmi b/icons/overmap/overmap.dmi index e562c5b1f7b..d4f78f5a7e5 100644 Binary files a/icons/overmap/overmap.dmi and b/icons/overmap/overmap.dmi differ diff --git a/icons/overmap/overmap_turfs.dmi b/icons/overmap/overmap_turfs.dmi index 252ef515619..2d8fb34d29e 100644 Binary files a/icons/overmap/overmap_turfs.dmi and b/icons/overmap/overmap_turfs.dmi differ