From 7149fbef6accfb2b5026cbea460f1603e5ce97f8 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Thu, 4 Jan 2024 17:57:18 +0100 Subject: [PATCH] [MIRROR] Fix Fugu applying wall tearer element to the wrong thing [MDB IGNORE] (#25974) * Fix Fugu applying wall tearer element to the wrong thing (#80739) ## About The Pull Request Don't put the element on the item itself, put it on the thing it's being applied to ## Changelog :cl: Melbert fix: Fixed Fugu Gland applying to mobs incorrectly /:cl: * Fix Fugu applying wall tearer element to the wrong thing --------- Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com> --- .../mob/living/basic/space_fauna/wumborian_fugu/fugu_gland.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/basic/space_fauna/wumborian_fugu/fugu_gland.dm b/code/modules/mob/living/basic/space_fauna/wumborian_fugu/fugu_gland.dm index 98daeb6d8c2..8805897e19a 100644 --- a/code/modules/mob/living/basic/space_fauna/wumborian_fugu/fugu_gland.dm +++ b/code/modules/mob/living/basic/space_fauna/wumborian_fugu/fugu_gland.dm @@ -38,6 +38,6 @@ animal.melee_damage_lower = max((animal.melee_damage_lower * 2), 10) animal.melee_damage_upper = max((animal.melee_damage_upper * 2), 10) animal.transform *= 2 - AddElement(/datum/element/wall_tearer) + animal.AddElement(/datum/element/wall_tearer) to_chat(user, span_info("You increase the size of [animal], giving [animal.p_them()] a surge of strength!")) qdel(src)