diff --git a/code/modules/mod/modules/_module.dm b/code/modules/mod/modules/_module.dm index 0aef11ea3d1..db56bf5850f 100644 --- a/code/modules/mod/modules/_module.dm +++ b/code/modules/mod/modules/_module.dm @@ -153,14 +153,6 @@ if(((!mod.active || mod.activating) && !(allow_flags & MODULE_ALLOW_INACTIVE)) || !mod.get_charge()) // SKYRAT EDIT ADDITION: INACTIVE USE balloon_alert(activator, "unpowered!") return FALSE - - // SKYRAT EDIT START - No using modules when not all parts are deployed. - if(!(allow_flags & MODULE_ALLOW_INACTIVE)) - for(var/obj/item/part as anything in mod.get_parts()) - if(part.loc == mod) - balloon_alert(mod.wearer, "deploy all parts first!") - return FALSE - // SKYRAT EDIT END if(!(allow_flags & MODULE_ALLOW_PHASEOUT) && istype(mod.wearer.loc, /obj/effect/dummy/phased_mob)) //specifically a to_chat because the user is phased out. to_chat(activator, span_warning("You cannot activate this right now."))