diff --git a/game/modules/tome/data/birth/descriptors.lua b/game/modules/tome/data/birth/descriptors.lua
index e752b314398feaadc8743ff26060937fdb64a62f..65ca5ce90f59ab38762b000befb969c93ddd1051 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 8a2044ffae9d4022590d60be87d775fd79aa8466..321139296ea4a0bb89a5fc7e1285704728cb2142 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}