Skip to content

Commit

Permalink
tweak(zombie): sprite runtime fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Doster-d committed Dec 22, 2023
1 parent 5d43450 commit 31f6443
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/mob/organs/external/_external_icons.dm
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ var/list/limb_icon_cache = list()
. += "[species.get_race_key(owner)]"
. += "[bb]"
. += is_stump() ? "_s" : ""
if(owner.mind.special_role == "Zombie")
if(owner?.mind?.special_role == "Zombie")
. += "_z"

if(force_icon)
Expand Down

0 comments on commit 31f6443

Please sign in to comment.