diff --git a/code/modules/power/singularity/generator.dm b/code/modules/power/singularity/generator.dm
index 551ba7e78bb..11ffbf5a3f6 100644
--- a/code/modules/power/singularity/generator.dm
+++ b/code/modules/power/singularity/generator.dm
@@ -13,10 +13,10 @@
/obj/machinery/the_singularitygen/process()
var/turf/T = get_turf(src)
if(src.energy >= 200)
- message_admins("A [creation_type.name] has been created at [x], [y], [z] (JMP)")
- investigate_log("A [creation_type.name] has been created at [x], [y], [z]","singulo")
+ message_admins("A [creation_type] has been created at [x], [y], [z] (JMP)")
+ investigate_log("A [creation_type] has been created at [x], [y], [z]","singulo")
- var/obj/singularity/S = new creation_type(T, 50)
+ var/obj/singularity/S = new creation_type(T, 50)
transfer_fingerprints_to(S)
if(src) qdel(src)