diff --git a/code/modules/overmap/ships/engines/ion_thruster.dm b/code/modules/overmap/ships/engines/ion_thruster.dm index 222c801611c..3c84790e12d 100644 --- a/code/modules/overmap/ships/engines/ion_thruster.dm +++ b/code/modules/overmap/ships/engines/ion_thruster.dm @@ -37,8 +37,8 @@ /obj/machinery/ion_engine name = "ion propulsion device" desc = "An advanced ion propulsion device, using energy and minutes amount of gas to generate thrust." - icon = 'icons/turf/shuttle_parts.dmi' - icon_state = "nozzle" + icon = 'icons/turf/shuttle_parts_vr.dmi' // VOREStation Edit - New icons + icon_state = "ion" // VOREStation Edit - New icons power_channel = ENVIRON idle_power_usage = 100 anchored = TRUE @@ -53,6 +53,10 @@ . = ..() controller = new(src) + var/image/i = image('icons/turf/shuttle_parts_vr.dmi', "ion_overlay") // VOREStation Edit + i.plane = PLANE_LIGHTING_ABOVE // VOREStation Edit + add_overlay(i) // VOREStation Edit + /obj/machinery/ion_engine/Destroy() QDEL_NULL(controller) . = ..() diff --git a/icons/turf/shuttle_parts_vr.dmi b/icons/turf/shuttle_parts_vr.dmi new file mode 100644 index 00000000000..740688a502d Binary files /dev/null and b/icons/turf/shuttle_parts_vr.dmi differ