From 9fe9600a193235fef4b5addcd376c1fa8297d2bd Mon Sep 17 00:00:00 2001 From: SoundScopes Date: Sun, 12 Apr 2015 22:10:36 +0100 Subject: [PATCH] Magboots and Hardsuits --- code/modules/clothing/spacesuits/rig.dm | 27 ++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/code/modules/clothing/spacesuits/rig.dm b/code/modules/clothing/spacesuits/rig.dm index 8e03e9f1..11a906fa 100644 --- a/code/modules/clothing/spacesuits/rig.dm +++ b/code/modules/clothing/spacesuits/rig.dm @@ -359,7 +359,32 @@ src.helmet = null return - if("l_leg" || "r_leg" || "l_foot" || "r_foot") + //Fricking boots and Switches + if("l_leg") + if(!boots) + user << "\The [src] does not have any boots installed." + else + user << "You detatch \the [boots] from \the [src]'s boot mounts." + boots.loc = get_turf(src) + boots = null + return + if("r_leg") + if(!boots) + user << "\The [src] does not have any boots installed." + else + user << "You detatch \the [boots] from \the [src]'s boot mounts." + boots.loc = get_turf(src) + boots = null + return + if("l_foot") + if(!boots) + user << "\The [src] does not have any boots installed." + else + user << "You detatch \the [boots] from \the [src]'s boot mounts." + boots.loc = get_turf(src) + boots = null + return + if("r_foot") if(!boots) user << "\The [src] does not have any boots installed." else