diff --git a/code/game/gamemodes/meteor/meteors.dm b/code/game/gamemodes/meteor/meteors.dm index 706b93d1cd3..ce44ea93f00 100644 --- a/code/game/gamemodes/meteor/meteors.dm +++ b/code/game/gamemodes/meteor/meteors.dm @@ -295,8 +295,8 @@ /obj/effect/meteor/supermatter name = "supermatter shard" - icon = 'icons/obj/engine.dmi' - icon_state = "darkmatter" + icon = 'icons/obj/supermatter.dmi' + icon_state = "darkmatter_meteor" /obj/effect/meteor/supermatter/New() ..() diff --git a/code/modules/supermatter/supermatter.dm b/code/modules/supermatter/supermatter.dm index 0cbc2258b00..0e632779cfc 100644 --- a/code/modules/supermatter/supermatter.dm +++ b/code/modules/supermatter/supermatter.dm @@ -47,16 +47,17 @@ desc_antag = "Always ahelp before sabotaging the supermatter, as it can potentially ruin the round. Exposing the supermatter to oxygen or vaccuum will cause it to start rapidly heating up. \ Sabotaging the supermatter and making it explode will cause a period of lag as the explosion is processed by the server, as well as irradiating the entire station and causing hallucinations to happen. \ Wearing radiation equipment will protect you from most of the delamination effects sans explosion." - icon = 'icons/obj/engine.dmi' - icon_state = "darkmatter" + icon = 'icons/obj/supermatter.dmi' + icon_state = "supermatter" density = TRUE anchored = FALSE light_range = 4 light_power = 1 + layer = ABOVE_ALL_MOB_LAYER var/gasefficency = 0.25 - var/base_icon_state = "darkmatter" + var/base_icon_state = "supermatter" var/last_power var/damage = 0 diff --git a/html/changelogs/SupermatterChange.yml b/html/changelogs/SupermatterChange.yml new file mode 100644 index 00000000000..9b85b67914d --- /dev/null +++ b/html/changelogs/SupermatterChange.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf & Azlan + +delete-after: True + +changes: + - rscadd: "The supermatter engine has a new sprite. Shiny..." diff --git a/icons/obj/engine.dmi b/icons/obj/engine.dmi index e4047b43338..115fbd628b0 100644 Binary files a/icons/obj/engine.dmi and b/icons/obj/engine.dmi differ diff --git a/icons/obj/supermatter.dmi b/icons/obj/supermatter.dmi new file mode 100644 index 00000000000..9f2cefbb180 Binary files /dev/null and b/icons/obj/supermatter.dmi differ