diff --git a/code/modules/mod/modules/_module.dm b/code/modules/mod/modules/_module.dm index 0c7e637d8b7..b6c20141446 100644 --- a/code/modules/mod/modules/_module.dm +++ b/code/modules/mod/modules/_module.dm @@ -149,14 +149,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."))