From df48f319fdfe38ca3ec2580f61e4b28dd1d6b292 Mon Sep 17 00:00:00 2001 From: K'van <imkvan@gmail.com> Date: Thu, 31 Dec 2020 23:57:28 +0100 Subject: [PATCH] Fix typo in Life Lost Warning --- game/modules/tome/dialogs/GameOptions.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/modules/tome/dialogs/GameOptions.lua b/game/modules/tome/dialogs/GameOptions.lua index d21a218168..41856d984e 100644 --- a/game/modules/tome/dialogs/GameOptions.lua +++ b/game/modules/tome/dialogs/GameOptions.lua @@ -492,7 +492,7 @@ function _M:generateListGameplay() end, 1)) end,} - local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"If you loose more than this percentage of life in a turn, a warning will display and all key/mouse input will be ignored for 2 seconds to prevent mistakes.#WHITE#"):toTString()} + local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"If you lose more than this percentage of life in a turn, a warning will display and all key/mouse input will be ignored for 2 seconds to prevent mistakes.#WHITE#"):toTString()} list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Life Lost Warning#WHITE##{normal}#"):toTString(), status=function(item) return (not config.settings.tome.life_lost_warning or config.settings.tome.life_lost_warning == 100) and _t"disabled" or tostring(config.settings.tome.life_lost_warning).."%" end, fct=function(item) -- GitLab