[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

🆑 Melbert
fix: Fixed Fugu Gland applying to mobs incorrectly
/🆑

* Fix Fugu applying wall tearer element to the wrong thing

---------

Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com>
This commit is contained in:
SkyratBot
2024-01-04 16:57:18 +00:00
committed by GitHub
co-authored by MrMelbert
parent 401cd528d4
commit 7149fbef6a
@@ -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)