diff --git a/code/game/objects/structures/traps.dm b/code/game/objects/structures/traps.dm
index a3440108a1b..4d8d29d0d81 100644
--- a/code/game/objects/structures/traps.dm
+++ b/code/game/objects/structures/traps.dm
@@ -174,12 +174,8 @@
/obj/structure/trap/fire/trap_effect(mob/living/L)
to_chat(L, "Spontaneous combustion!")
L.Paralyze(20)
-
-/obj/structure/trap/fire/flare()
- ..()
new /obj/effect/hotspot(get_turf(src))
-
/obj/structure/trap/chill
name = "frost trap"
desc = "A trap that will chill you to the bone. You'd better avoid it."
@@ -202,9 +198,6 @@
to_chat(L, "The ground quakes beneath your feet!")
L.Paralyze(100)
L.adjustBruteLoss(35)
-
-/obj/structure/trap/damage/flare()
- ..()
var/obj/structure/flora/rock/giant_rock = new(get_turf(src))
QDEL_IN(giant_rock, 200)