Adds bedsheets to the list of washable items.

Fixes https://github.com/VOREStation/VOREStation/issues/1456
This commit is contained in:
Leshana
2017-06-05 14:21:07 -04:00
parent c0bce69b7a
commit 746571f53f
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -115,7 +115,7 @@
user << "<span class='warning'>You can't fit \the [W] inside.</span>"
return
else if(istype(W, /obj/item/clothing))
else if(istype(W, /obj/item/clothing) || istype(W, /obj/item/weapon/bedsheet))
if(washing.len < 5)
if(state in list(1, 3))
user.drop_item()
+4
View File
@@ -0,0 +1,4 @@
author: Leshana
delete-after: True
changes:
- bugfix: "Bedsheets can be put into washing machines again."