diff --git a/code/modules/power/singularity/collector.dm b/code/modules/power/singularity/collector.dm index 014b3874bc4..76e03b8d8ec 100644 --- a/code/modules/power/singularity/collector.dm +++ b/code/modules/power/singularity/collector.dm @@ -6,7 +6,7 @@ #define RAD_COLLECTOR_OUTPUT min(stored_energy, (stored_energy*RAD_COLLECTOR_STORED_OUT)+1000) //Produces at least 1000 watts if it has more than that stored /obj/machinery/power/rad_collector name = "Radiation Collector Array" - desc = "A device which uses Hawking Radiation and plasma to produce power." + desc = "A device which uses radiation and plasma to produce power." icon = 'icons/obj/singularity.dmi' //ICON OVERRIDEN IN SKYRAT AESTHETICS - SEE MODULE icon_state = "ca" anchored = FALSE @@ -185,7 +185,7 @@ if(machine_stat & (NOPOWER|BROKEN)) return if(active) - . += "on" + . += "on" // SKYRAT EDIT CHANGE - ORIGINAL. += loaded_tank ? "on" : "error" /obj/machinery/power/rad_collector/proc/toggle_power() active = !active diff --git a/icons/obj/singularity.dmi b/icons/obj/singularity.dmi index e036731d00e..e231032f576 100644 Binary files a/icons/obj/singularity.dmi and b/icons/obj/singularity.dmi differ