Fattening baton and sword icon fix

Fattening baton and sword icon fix
This commit is contained in:
Hekto61
2025-08-08 01:41:56 +03:00
parent e59be5e480
commit 3cd15e8bfa
@@ -9,3 +9,19 @@
desc = "functions the same as it's standard counterpart, but fattens targets when used aggressively."
force = 20
damtype = FAT
/obj/item/melee/baton/fattening/update_icon_state()
if(turned_on)
icon_state = "stunbaton_active"
else if(!cell)
icon_state = "stunbaton_nocell"
else
icon_state = "stunbaton"
/obj/item/melee/baton/stunsword/fattening/update_icon_state()
if(turned_on)
icon_state = "stunsword_active"
else if(!cell)
icon_state = "stunsword_nocell"
else
icon_state = "stunsword"