Merge pull request #3582 from Anewbe/sleeves_flannel

Rolling sleeves on flannel shirts now uncovers your arms
This commit is contained in:
Anewbe
2017-07-12 23:18:21 -05:00
committed by GitHub

View File

@@ -877,9 +877,11 @@ obj/item/clothing/suit/storage/toggle/peacoat
if(rolled == 0) if(rolled == 0)
rolled = 1 rolled = 1
body_parts_covered &= ~(ARMS)
usr << "<span class='notice'>You roll up the sleeves of your [src].</span>" usr << "<span class='notice'>You roll up the sleeves of your [src].</span>"
else else
rolled = 0 rolled = 0
body_parts_covered = initial(body_parts_covered)
usr << "<span class='notice'>You roll down the sleeves of your [src].</span>" usr << "<span class='notice'>You roll down the sleeves of your [src].</span>"
update_icon() update_icon()