Merge pull request #5423 from Zuhayr/dev

Vox icon fixes.
This commit is contained in:
Chinsky
2014-07-01 02:20:51 +04:00
10 changed files with 12 additions and 6 deletions
+1
View File
@@ -4,6 +4,7 @@
desc = "You shouldn't ever see this."
icon = 'icons/obj/objects.dmi'
slot_flags = SLOT_HEAD
sprite_sheets = list("Vox" = 'icons/mob/species/vox/head.dmi')
/obj/item/weapon/holder/New()
..()
@@ -308,6 +308,6 @@ emp_act
if(damtype != BURN && damtype != BRUTE) return
var/obj/item/clothing/suit/space/SS = wear_suit
var/penetrated_dam = max(0,(damage - max(0,(SS.breach_threshold - SS.damage))))
var/penetrated_dam = max(0,(damage - SS.breach_threshold)) // - SS.damage)) - Consider uncommenting this if suits seem too hardy on dev.
if(penetrated_dam) SS.create_breaches(damtype, penetrated_dam)