Page 1 of 1

[1.4.2] Weirdness with "Ashes of Urh'Rok" DLC unlocks

Posted: Thu Jan 28, 2016 12:50 pm
by reg_dam
Currently in my profile I have 36/39 unlocks. Wanting to know which ones I am missing, I did the following edit in tome.team\mod\class\Game.lua:

Code: Select all

function _M:countBirthUnlocks()
	local nb = 0
	local max = 0

	for name, _ in pairs(self.unlocks_list) do
		max = max + 1
		if profile.mod.allow_build[name] then nb = nb + 1
+                else
+                    print(name)
                end
	end
	return nb, max
end 
Then in te4_log.txt I have found the following lines:

Code: Select all

race_yeti
cosmetic_demon_horns
difficulty_madness
I do miss the "Madness" difficulty, but I am confused about the other two.
The only mention of them that I was able to find was in ashes-urhrok.teaac\tome-ashes-urhrok\superload\mod\class\Game.lua:

Code: Select all

_M.unlocks_list.race_yeti = "Class: Demonologist" 
_M.unlocks_list.cosmetic_demon_horns = "Cosmetic: demonic horns" 
But I already unlocked that class. And demon horns, too. Excrept from my T-Engine\4.0\profiles\offline\modules\tome\allow_build.profile file:

Code: Select all

corrupter_demonologist = true 
cosmetic_doomhorns = true 
Considering that the game counts them as "locked", but I have them unlocked and can use them, I classified this behaviour as a bug.

Re: [1.4.2] Weirdness with "Ashes of Urh'Rok" DLC unlocks

Posted: Mon Feb 01, 2016 10:21 pm
by darkgod
Ahah woops :)