Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 3a230e5

Browse files
authored
Makes stripping of most unarmored hats fast (#22693)
* Revert "update fork" This reverts commit 67263d5, reversing changes made to e159e4b. * Revert "Revert "update fork"" This reverts commit e678f6f. * Update borg_ai_skin_datums.dm * Update _head.dm
1 parent cd06e7f commit 3a230e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

code/modules/clothing/head/_head.dm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
/// Can land on someones head
1111
var/hattable = TRUE
1212
dynamic_hair_suffix = "+generic"
13+
strip_delay = 1 SECONDS
1314

1415
/obj/item/clothing/head/Initialize(mapload)
1516
. = ..()
@@ -33,7 +34,7 @@
3334
bloody_helmet = mutable_appearance('icons/effects/64x64.dmi', "helmetblood_large")
3435
else
3536
bloody_helmet = mutable_appearance('icons/effects/blood.dmi', "helmetblood")
36-
if(species_fitted && icon_exists(bloody_helmet.icon, "helmetblood_[species_fitted]"))
37+
if(species_fitted && icon_exists(bloody_helmet.icon, "helmetblood_[species_fitted]"))
3738
bloody_helmet.icon_state = "helmetblood_[species_fitted]"
3839
bloody_helmet.color = get_blood_dna_color(return_blood_DNA())
3940
. += bloody_helmet
@@ -56,4 +57,3 @@
5657
H.visible_message("The [src] lands gracefully on [H]'s head")
5758
return TRUE
5859
H.visible_message("The [src] hits [H]'s head")
59-

0 commit comments

Comments
 (0)