Merge branch 'dev-freeze' of https://github.com/Baystation12/Baystation12 into devupdate

Conflicts:
	code/modules/clothing/clothing.dm
This commit is contained in:
Zuhayr
2015-08-22 03:17:16 +09:30
21 changed files with 141 additions and 65 deletions
+2 -2
View File
@@ -43,7 +43,7 @@
user << "You set about modifying the helmet into [src]."
var/mob/living/carbon/human/H = user
if(istype(H))
species_restricted = list(H.species.name)
species_restricted = list(H.species.get_bodytype())
kit.use(1,user)
return 1
return ..()
@@ -62,7 +62,7 @@
user << "You set about modifying the suit into [src]."
var/mob/living/carbon/human/H = user
if(istype(H))
species_restricted = list(H.species.name)
species_restricted = list(H.species.get_bodytype())
kit.use(1,user)
return 1
return ..()