Fixed typo in "the poison has worn off" message

This commit is contained in:
Player Name 2023-08-14 14:31:51 +00:00 committed by Ryan
parent 86a25dd76f
commit 232cae454a

View file

@ -60,7 +60,7 @@ class Poison : PersistTimer (30, "poison", flags = arrayOf(TimerFlag.ClearOnDeat
) )
if (severity == 0 && entity is Player) if (severity == 0 && entity is Player)
sendMessage(entity, "The poison has wore off.") sendMessage(entity, "The poison has worn off.")
return severity > 0 return severity > 0
} }