Merge pull request #5656 from lbnesquik/Kates-AshTray-Fix

Fix plastic ashtrays only holding one butt. Now they hold 4 butts.
This commit is contained in:
Atermonera
2018-10-13 14:16:51 -07:00
committed by VirgoBot
parent 54d0c23456
commit eb1bbac042
@@ -14,7 +14,7 @@ var/global/list/ashtray_cache = list()
if(!material)
qdel(src)
return
max_butts = round(material.hardness/10) //This is arbitrary but whatever.
max_butts = round(material.hardness/5) //This is arbitrary but whatever.
src.pixel_y = rand(-5, 5)
src.pixel_x = rand(-6, 6)
update_icon()