mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-04 06:22:14 +00:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user