From 0715788b370bda8a1a2db3ba36e231eeef1136bc Mon Sep 17 00:00:00 2001 From: chuga-git <98280110+chuga-git@users.noreply.github.com> Date: Mon, 26 May 2025 17:38:51 -0500 Subject: [PATCH] Adds null check to stop changeling transform ability runtime (#29456) --- code/modules/antagonists/changeling/powers/transform.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/antagonists/changeling/powers/transform.dm b/code/modules/antagonists/changeling/powers/transform.dm index 8780af63bdc..beab27727fc 100644 --- a/code/modules/antagonists/changeling/powers/transform.dm +++ b/code/modules/antagonists/changeling/powers/transform.dm @@ -26,6 +26,6 @@ user.update_handcuffed() cling.update_languages() var/datum/action/changeling/augmented_eyesight/eyesight = locate() in user.actions - eyesight.update_eyes(user) + eyesight?.update_eyes(user) SSblackbox.record_feedback("nested tally", "changeling_powers", 1, list("[name]")) return TRUE