Fix entombed modsuit runtime

This proc was missing one of the arguments present in the parent and it would sometimes runtime from it
This commit is contained in:
Roxy
2025-07-05 21:57:16 -04:00
parent 177eb0b958
commit 330fbd8a85
@@ -57,7 +57,7 @@
who.balloon_alert(who, "can't strip a fused MODsuit!")
return ..()
/obj/item/mod/control/pre_equipped/entombed/retract(mob/user, obj/item/part)
/obj/item/mod/control/pre_equipped/entombed/retract(mob/user, obj/item/part, instant = FALSE)
if (ishuman(user))
var/mob/living/carbon/human/human_user = user
var/datum/quirk/equipping/entombed/tomb_quirk = human_user.get_quirk(/datum/quirk/equipping/entombed)