From 9ea03afc47930650b39cb87283a0c72c57d0a13a Mon Sep 17 00:00:00 2001 From: AmityBlamity <142629851+AmityBlamity@users.noreply.github.com> Date: Sat, 7 Jun 2025 15:51:43 +0200 Subject: [PATCH] Minor typo fix in morph_spell_handler.dm (#29535) --- code/datums/spell_handler/morph_spell_handler.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/spell_handler/morph_spell_handler.dm b/code/datums/spell_handler/morph_spell_handler.dm index 36b79658307..336b0bc5942 100644 --- a/code/datums/spell_handler/morph_spell_handler.dm +++ b/code/datums/spell_handler/morph_spell_handler.dm @@ -5,7 +5,7 @@ /datum/spell_handler/morph/can_cast(mob/living/simple_animal/hostile/morph/user, charge_check, show_message, datum/spell/spell) if(!istype(user)) if(show_message) - to_chat(user, "You should not be able to use this abilty! Report this as a bug on github please.") + to_chat(user, "You should not be able to use this ability! Report this as a bug on github please.") return FALSE if(user.gathered_food < hunger_cost)