Removing unnecessary usage of icon_override for Teshari cloaks.

This commit is contained in:
MistakeNot4892
2023-06-23 23:03:54 +10:00
parent 26ef4b47b2
commit ab34458871
6 changed files with 47 additions and 46 deletions
-2
View File
@@ -72,7 +72,6 @@
if(istype(I, /obj/item/clothing/accessory/storage/poncho))
var/obj/item/clothing/accessory/storage/poncho/P = I
P.icon_override_state = new_icon_override_file
LAZYSET(P.sprite_sheets, SPECIES_TESHARI, new_icon_override_file) /// Will look the same on Teshari and other species.
P.item_state = new_icon
to_chat(user, "You set about modifying the poncho into [new_name].")
return ..()
@@ -84,7 +83,6 @@
/obj/item/kit/clothing/customize(var/obj/item/clothing/I, var/mob/user)
if(istype(I) && can_customize(I))
LAZYSET(I.sprite_sheets, SPECIES_TESHARI, new_icon_override_file) /// Will look the same on Teshari and other species.
I.item_state = new_icon
return ..()