diff --git a/code/datums/components/chasm.dm b/code/datums/components/chasm.dm index 0979fc867a4e..2d324a85d112 100644 --- a/code/datums/components/chasm.dm +++ b/code/datums/components/chasm.dm @@ -118,8 +118,7 @@ return CHASM_REGISTER_SIGNALS if(ishuman(dropped_thing)) var/mob/living/carbon/human/victim = dropped_thing - if(istype(victim.belt, /obj/item/wormhole_jaunter)) - var/obj/item/wormhole_jaunter/jaunter = victim.belt + for(var/obj/item/wormhole_jaunter/jaunter in victim.get_all_contents()) var/turf/chasm = get_turf(victim) var/fall_into_chasm = jaunter.chasm_react(victim) if(!fall_into_chasm)