Page 1 of 1

SVN 1896 basic classes are being disallowed

Posted: Mon Nov 15, 2010 1:44 am
by Mushroomhermit
in tome/data/birth/worlds.lua

Code: Select all

class =
		{
			__ALL__ = "disallow",
			Mage = "allow",
			Divine = function() return profile.mod.allow_build.divine and "allow" or "disallow" end,
			Wilder = function() return (
				profile.mod.allow_build.wilder_summoner or
				profile.mod.allow_build.wilder_wyrmic
				) and "allow" or "disallow"
			end,
			Corrupter = function() return profile.mod.allow_build.corrupter and "allow" or "disallow" end,
			Afflicted = function() return profile.mod.allow_build.afflicted and "allow" or "disallow" end,
			Chronomancer = function() return profile.mod.allow_build.chronomancer and "allow" or "disallow" end,
		},
Is preventing warriors, rogues and archers from being created.

Re: SVN 1896 basic classes are being disallowed

Posted: Mon Nov 15, 2010 7:45 am
by Vee
How do I unlock Warriors? :P

Just realized the same. Only unlocked classes are playable. (and those where other subclasses were unlocked. Alchemist is playable if you got Archmage)
This was introduced in SVN 1894 with the cronomancer stuff.

Re: SVN 1896 basic classes are being disallowed

Posted: Mon Nov 15, 2010 8:10 am
by darkgod
fixed :)