From ffcedb6f4429f1e39dad0fd7fba77b6c2de2a618 Mon Sep 17 00:00:00 2001 From: mistakenot4892 Date: Thu, 8 Jan 2026 21:24:42 +1100 Subject: [PATCH] Small tweaks missed in previous PR. --- mods/content/wyrd/wyrd_abilities.dm | 2 ++ mods/content/wyrd/wyrdling_mask.dm | 7 ++----- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/mods/content/wyrd/wyrd_abilities.dm b/mods/content/wyrd/wyrd_abilities.dm index fc9e70150a5..37aa5045037 100644 --- a/mods/content/wyrd/wyrd_abilities.dm +++ b/mods/content/wyrd/wyrd_abilities.dm @@ -38,6 +38,7 @@ var/decl/anima/anima = GET_DECL(atype) to_chat(user, anima.get_personal_anima_description(avalue, user.get_background_datum(/decl/background_category/faction))) +/* /mob/living/verb/debug_anima_verb() set name = "Debug Anima" set category = "Debug" @@ -51,3 +52,4 @@ add_ability(/decl/ability/wyrd/spell/flash) add_ability(/decl/ability/wyrd/spell/gloom) add_ability(/decl/ability/wyrd/spell/flare) +*/ diff --git a/mods/content/wyrd/wyrdling_mask.dm b/mods/content/wyrd/wyrdling_mask.dm index 5d0bc7e486c..51107c025a9 100644 --- a/mods/content/wyrd/wyrdling_mask.dm +++ b/mods/content/wyrd/wyrdling_mask.dm @@ -86,9 +86,6 @@ var/mob/living/_our_owner VAR_PRIVATE/mob/living/_our_animal -/obj/item/clothing/mask/ghost_caul/proc/set_animal(mob/living/_new_animal) - _our_animal = _new_animal - /obj/item/clothing/mask/ghost_caul/get_preview_screen_locs() var/static/list/override_preview_screen_locs = list( "1" = "character_preview_map:1,4:36", @@ -141,11 +138,11 @@ // Keep a reference to our human to avoid them getting GC'd in nullspace. if(istype(target, mask.transformation_mob_type)) - mask.set_animal(src) + mask._our_owner = src drop_from_inventory(mask) mask.forceMove(target) else - mask.set_animal(null) + mask._our_owner = null mask.forceMove(get_turf(target)) target.equip_to_slot_or_store_or_drop(mask, slot_wear_mask_str)