From ecbc20b993b2681b0c2310c94d923710b41bc878 Mon Sep 17 00:00:00 2001 From: DarkGod <darkgod@net-core.org> Date: Sun, 1 Dec 2013 02:22:12 +0100 Subject: [PATCH] Tutorial character is correctly having infinite lives --- game/modules/tome/data/birth/descriptors.lua | 2 +- game/modules/tome/dialogs/Birther.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/game/modules/tome/data/birth/descriptors.lua b/game/modules/tome/data/birth/descriptors.lua index e752b31439..65ca5ce90f 100644 --- a/game/modules/tome/data/birth/descriptors.lua +++ b/game/modules/tome/data/birth/descriptors.lua @@ -128,7 +128,7 @@ newBirthDescriptor{ copy = { auto_id = 2, no_birth_levelup = true, - easy_mode_lifes = 99999, + infinite_lifes = 1, __game_difficulty = 1, __allow_rod_recall = false, __allow_transmo_chest = false, diff --git a/game/modules/tome/dialogs/Birther.lua b/game/modules/tome/dialogs/Birther.lua index 8a2044ffae..321139296e 100644 --- a/game/modules/tome/dialogs/Birther.lua +++ b/game/modules/tome/dialogs/Birther.lua @@ -348,7 +348,7 @@ function _M:tutorial() self:atEnd("created") end - local d = Dialog.new("Tutorials", 250, 100) + local d = Dialog.new("Tutorials", 280, 100) local basic = Button.new{text="Basic Gameplay (recommended)", fct=function() run("Basic") d.key:triggerVirtual("EXIT") end} local stats = Button.new{text="Stats and effects (advanced players)", fct=function() run("Stats") d.key:triggerVirtual("EXIT") end} local cancel = Button.new{text="Cancel", fct=function() d.key:triggerVirtual("EXIT") end} -- GitLab