diff --git a/game/modules/tome/data/birth/descriptors.lua b/game/modules/tome/data/birth/descriptors.lua index b8f2b42ebea7af7b675d22b171d670bde0badbed..066641e855f5e48b0d1503438c36db0746b9ddf8 100644 --- a/game/modules/tome/data/birth/descriptors.lua +++ b/game/modules/tome/data/birth/descriptors.lua @@ -133,6 +133,9 @@ newBirthDescriptor{ __allow_rod_recall = false, __allow_transmo_chest = false, }, + game_state = { + always_learn_birth_talents = true, + }, } newBirthDescriptor{ type = "difficulty", diff --git a/game/modules/tome/dialogs/Birther.lua b/game/modules/tome/dialogs/Birther.lua index 02469ea9d9547bfceb128126ff04ec3e7346c083..3a02148f369c32e9ae0759448c17306ed52d4293 100644 --- a/game/modules/tome/dialogs/Birther.lua +++ b/game/modules/tome/dialogs/Birther.lua @@ -238,7 +238,7 @@ function _M:atEnd(v) self.actor.has_custom_tile = self.has_custom_tile.f end -- Prevent the game from auto-assigning talents if necessary. - if (not config.settings.tome.autoassign_talents_on_birth) then + if (not config.settings.tome.autoassign_talents_on_birth) and not game.state.birth.always_learn_birth_talents then for _, d in pairs(self.descriptors) do local unlearned_talents = { }