Magboots and Hardsuits

This commit is contained in:
SoundScopes
2015-04-12 22:10:36 +01:00
parent 1878092de7
commit 9fe9600a19
+26 -1
View File
@@ -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