diff --git a/code/game/gamemodes/miniantags/guardian/types/bomb.dm b/code/game/gamemodes/miniantags/guardian/types/bomb.dm
index f8c3898ed9c..23f922687a2 100644
--- a/code/game/gamemodes/miniantags/guardian/types/bomb.dm
+++ b/code/game/gamemodes/miniantags/guardian/types/bomb.dm
@@ -46,7 +46,8 @@
/obj/item/guardian_bomb/proc/disable()
stored_obj.forceMove(get_turf(src))
- to_chat(spawner, "Failure! Your trap on [stored_obj] didn't catch anyone this time.")
+ if(spawner)
+ to_chat(spawner, "Failure! Your trap on [stored_obj] didn't catch anyone this time.")
qdel(src)
/obj/item/guardian_bomb/proc/detonate(var/mob/living/user)