From 1f0743be93fdb4d215c15a4ea85a8a468cc6ebcf Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 02:03:50 +0200 Subject: [PATCH] [MIRROR] fixes wizard loadouts [MDB IGNORE] (#22793) * fixes wizard loadouts (#77236) why this shit try to get an instance of a string??? ## Changelog :cl: fix: fixes wizard loadouts /:cl: * fixes wizard loadouts --------- Co-authored-by: Fikou <23585223+Fikou@users.noreply.github.com> --- code/modules/antagonists/wizard/equipment/wizard_spellbook.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/antagonists/wizard/equipment/wizard_spellbook.dm b/code/modules/antagonists/wizard/equipment/wizard_spellbook.dm index 29a1c277523..f13b53b12ed 100644 --- a/code/modules/antagonists/wizard/equipment/wizard_spellbook.dm +++ b/code/modules/antagonists/wizard/equipment/wizard_spellbook.dm @@ -216,7 +216,7 @@ return TRUE if("purchase_loadout") - wizard_loadout(wizard, locate(params["id"])) + wizard_loadout(wizard, params["id"]) return TRUE /// Attempts to purchased the passed entry [to_buy] for [user].