diff --git a/code/game/gamemodes/wizard/spellbook.dm b/code/game/gamemodes/wizard/spellbook.dm index 18cd7b2a334..d7620449593 100644 --- a/code/game/gamemodes/wizard/spellbook.dm +++ b/code/game/gamemodes/wizard/spellbook.dm @@ -240,7 +240,7 @@ feedback_add_details("wizard_spell_learned","NC") H.spell_list += new /obj/effect/proc_holder/spell/wizard/noclothes temp = "This teaches you how to use your spells without your magical garb, truely you are the wizardest." - uses -= 2 + uses-- if("magicmissile") feedback_add_details("wizard_spell_learned","MM") //please do not change the abbreviation to keep data processing consistent. Add a unique id to any new spells H.spell_list += new /obj/effect/proc_holder/spell/wizard/targeted/projectile/magic_missile(H) diff --git a/code/modules/reagents/reagent_containers/food/cans.dm b/code/modules/reagents/reagent_containers/food/cans.dm index 208cfbf4629..7d7b64f7f64 100644 --- a/code/modules/reagents/reagent_containers/food/cans.dm +++ b/code/modules/reagents/reagent_containers/food/cans.dm @@ -179,7 +179,7 @@ icon_state = "adminbooze" New() ..() - reagents.add_reagent("admorinazine", 5) + reagents.add_reagent("adminordrazine", 5) reagents.add_reagent("capsaicin", 5) reagents.add_reagent("methamphetamine", 20) reagents.add_reagent("thirteenloko", 20)