Skip to content
Snippets Groups Projects
Commit 614c2843 authored by DarkGod's avatar DarkGod
Browse files

Fix first prodigy level in the Infinite Dungeon

parent a7edb98b
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -128,10 +128,10 @@ newBirthDescriptor{
if self.extra_talent_point_every and self.level % self.extra_talent_point_every == 0 then self.unused_talents = self.unused_talents + 1 end
if self.extra_generic_point_every and self.level % self.extra_generic_point_every == 0 then self.unused_generics = self.unused_generics + 1 end
if self.level == 10 or self.level == 20 or self.level == 36 or self.level == 46 then
if self.level == 10 or self.level == 20 or self.level == 34 or self.level == 46 then
self.unused_talents_types = self.unused_talents_types + 1
end
if self.level == 30 or self.level == 42 then
if self.level == 25 or self.level == 42 then
self.unused_prodigies = self.unused_prodigies + 1
end
if self.level == 50 then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment