mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 12:07:27 +01:00
Ashwalkers now use unathi clothing sprites (#22750)
* fixes this shit * time to walk ash
This commit is contained in:
@@ -496,7 +496,7 @@
|
||||
RegisterSignal(wearer, COMSIG_ATOM_EXITED, PROC_REF(on_exit))
|
||||
update_charge_alert()
|
||||
for(var/obj/item/clothing/C in mod_parts)
|
||||
C.refit_for_species(wearer.dna.species.name)
|
||||
C.refit_for_species(wearer.dna.species.sprite_sheet_name)
|
||||
update_mod_overlays()
|
||||
for(var/obj/item/mod/module/module as anything in modules)
|
||||
module.on_equip()
|
||||
|
||||
@@ -302,8 +302,8 @@
|
||||
else
|
||||
return
|
||||
var/image/final_overlay
|
||||
if(sprite_sheets && sprite_sheets[user.dna.species.name])
|
||||
final_overlay = image(icon = sprite_sheets[user.dna.species.name], icon_state = used_overlay, layer = EFFECTS_LAYER)
|
||||
if(sprite_sheets && sprite_sheets[user.dna.species.sprite_sheet_name])
|
||||
final_overlay = image(icon = sprite_sheets[user.dna.species.sprite_sheet_name], icon_state = used_overlay, layer = EFFECTS_LAYER)
|
||||
else
|
||||
final_overlay = image(icon = overlay_icon_file, icon_state = used_overlay, layer = EFFECTS_LAYER)
|
||||
if(mod_color_overide)
|
||||
|
||||
Reference in New Issue
Block a user