diff --git a/code/game/gamemodes/wizard/wizard.dm b/code/game/gamemodes/wizard/wizard.dm
index ea68cec863d..a94177cee68 100644
--- a/code/game/gamemodes/wizard/wizard.dm
+++ b/code/game/gamemodes/wizard/wizard.dm
@@ -257,12 +257,12 @@
else
text += "
The wizard has failed!"
feedback_add_details("wizard_success","FAIL")
- if(wizard.current && wizard.current.spell_list)
+ if(wizard.spell_list)
text += "
[wizard.name] used the following spells: "
var/i = 1
- for(var/obj/effect/proc_holder/spell/wizard/S in wizard.current.spell_list)
+ for(var/obj/effect/proc_holder/spell/wizard/S in wizard.spell_list)
text += "[S.name]"
- if(wizard.current.spell_list.len > i)
+ if(wizard.spell_list.len > i)
text += ", "
i++
text += "
"