Cleaned up a few lines of clothing code.

Rig suits will now properly slow you down (a little less than a regular space suit), hotrod. 
Bio suits will also slow you down, as per fire suits.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@528 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
noisomehollow@lycos.com
2010-12-03 22:07:45 +00:00
parent 05540df7c8
commit a0f35c5c46
2 changed files with 9 additions and 8 deletions

View File

@@ -131,9 +131,16 @@
tally += 1.3
if(/obj/item/clothing/suit/fire/heavy) // firesuits slow you down a bit
tally += 1.7
if(/obj/item/clothing/suit/bio_suit) // biosuits slow you down a bit
tally += 1.3
if(/obj/item/clothing/suit/bio_suit/plaguedoctorsuit) // biosuits slow you down a bit
tally += 1.3
if(/obj/item/clothing/suit/space)
if(!istype(src.loc, /turf/space)) // space suits slow you down a bit unless in space
tally += 3
if(/obj/item/clothing/suit/space/rig)
if(!istype(src.loc, /turf/space)) // space suits slow you down a bit unless in space
tally += 2
if (istype(src.shoes, /obj/item/clothing/shoes))
if (src.shoes.chained)