From 681ecc7577a31349bbe430ae95b9db30ba88bb7a Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Thu, 29 Apr 2021 04:04:47 +0200 Subject: [PATCH] [MIRROR] Fixes infinite wiz shielded hardsuit charges (#5299) * woops (#58757) I was an idiot in #57797 and forgot to make the rune wizards can buy to add shield charges to their shielded hardsuits actually delete after being used, allowing you to use one rune infinitely. Oops! This PR fixes that. No more invincible wizards * Fixes infinite wiz shielded hardsuit charges Co-authored-by: Ryll Ryll <3589655+Ryll-Ryll@users.noreply.github.com> --- code/datums/components/shielded.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/datums/components/shielded.dm b/code/datums/components/shielded.dm index aab9f74aecc..bf463c47d5a 100644 --- a/code/datums/components/shielded.dm +++ b/code/datums/components/shielded.dm @@ -157,3 +157,4 @@ current_charges += recharge_rune.restored_charges to_chat(user, "You charge \the [parent]. It can now absorb [current_charges] hits.") + qdel(recharge_rune)