From 38eb6082a9938f2f12bef34b2957457778fd6335 Mon Sep 17 00:00:00 2001
From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54>
Date: Sun, 21 Aug 2011 14:24:41 +0000
Subject: [PATCH] fix

git-svn-id: http://svn.net-core.org/repos/t-engine4@4210 51575b47-30f0-44d4-a5cc-537603b46e54
---
 game/modules/tome/class/World.lua                       | 2 +-
 game/modules/tome/class/interface/WorldAchievements.lua | 8 ++++----
 game/modules/tome/data/birth/descriptors.lua            | 2 +-
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/game/modules/tome/class/World.lua b/game/modules/tome/class/World.lua
index 5a363363ab..40165306f7 100644
--- a/game/modules/tome/class/World.lua
+++ b/game/modules/tome/class/World.lua
@@ -53,8 +53,8 @@ function _M:gainAchievement(id, src, ...)
 	-- Do not unlock things in easy mode
 	if not a then return end
 	if game.difficulty == game.DIFFICULTY_EASY and not a.tutorial then return end
-	if game.permadeath == game.PERMADEATH_INFINITE and not a.tutorial then return end
 
+	if game.permadeath == game.PERMADEATH_INFINITE then id = "EXPLORATION_"..id end
 	if game.difficulty == game.DIFFICULTY_INSANE and game.permadeath == game.PERMADEATH_ONE then id = "INSANE_"..id end
 
 	mod.class.interface.WorldAchievements.gainAchievement(self, id, src, ...)
diff --git a/game/modules/tome/class/interface/WorldAchievements.lua b/game/modules/tome/class/interface/WorldAchievements.lua
index 569bdd5018..b67147e551 100644
--- a/game/modules/tome/class/interface/WorldAchievements.lua
+++ b/game/modules/tome/class/interface/WorldAchievements.lua
@@ -31,10 +31,10 @@ function _M:newAchievement(t)
 	WA.newAchievement(self, t)
 
 	if not t.no_difficulty_duplicate then
---		local t2 = table.clone(t)
---		t2.id = "EXPLORATION_"..t2.id
---		t2.name = t2.name.." (Exploration difficulty)"
---		WA.newAchievement(self, t2)
+		local t2 = table.clone(t)
+		t2.id = "EXPLORATION_"..t2.id
+		t2.name = t2.name.." (Exploration mode)"
+		WA.newAchievement(self, t2)
 
 		local t2 = table.clone(t)
 		t2.id = "INSANE_"..t2.id
diff --git a/game/modules/tome/data/birth/descriptors.lua b/game/modules/tome/data/birth/descriptors.lua
index e0d215121f..635f776567 100644
--- a/game/modules/tome/data/birth/descriptors.lua
+++ b/game/modules/tome/data/birth/descriptors.lua
@@ -202,7 +202,7 @@ newBirthDescriptor{
 		"Provides you with infinite lives.#{normal}#",
 		"This is not the way the game is meant to be played, but it allows you to have a more forgiving experience.",
 		"Remember though that dying is an integral part of the game and helps you become a better player.",
-		"No achievements will be granted in this mode.",
+		"Exploration version of achievements will be granted in this mode.",
 	},
 	copy = {
 		infinite_lifes = 1,
-- 
GitLab