From c86c856b6d62f9dc2cce5810b8b85f1373c45d9c Mon Sep 17 00:00:00 2001 From: Aliceee2ch <160794176+Aliceee2ch@users.noreply.github.com> Date: Wed, 24 Sep 2025 23:41:59 +0300 Subject: [PATCH] Borg inducer can charge again (#93096) ## About The Pull Request pr #91123 kinda broke borg inducers with overriding interaction proc ## Why It's Good For The Game because before borg inducer was literally bricked ## Changelog :cl: fix: Borg inducer can charge again /:cl: --- code/game/objects/items/inducer.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/items/inducer.dm b/code/game/objects/items/inducer.dm index 28ef30d8830..c869d52c9bc 100644 --- a/code/game/objects/items/inducer.dm +++ b/code/game/objects/items/inducer.dm @@ -267,6 +267,7 @@ return NONE /obj/item/inducer/cyborg/interact_with_atom(atom/movable/interacting_with, mob/living/user, list/modifiers) + . = ..() if(iscyborg(user) && iscyborg(interacting_with)) balloon_alert(user, "can't charge this!") return ITEM_INTERACT_FAILURE