diff --git a/game/modules/tome/class/Game.lua b/game/modules/tome/class/Game.lua index 7e8005e3e2501750718b94d168631128f4ccca53..7a10069ea9be8877852114487b9d0d733b0fe208 100644 --- a/game/modules/tome/class/Game.lua +++ b/game/modules/tome/class/Game.lua @@ -294,7 +294,7 @@ function _M:newGame() end if self.player.no_birth_levelup or __module_extra_info.no_birth_popup then birthend() - else self.player:playerLevelup(birthend) end + else self.player:playerLevelup(birthend, true) end -- Player was loaded from a premade else @@ -1274,7 +1274,7 @@ function _M:setupCommands() end), LEVELUP = function() - self.player:playerLevelup() + self.player:playerLevelup(nil, false) end, SAVE_GAME = function() diff --git a/game/modules/tome/class/Player.lua b/game/modules/tome/class/Player.lua index b225887f9ff6880e667efb2ce201b17bb378c0aa..5bbb2bbc7785fb4ed3673ec68e5bec2568a2c80b 100644 --- a/game/modules/tome/class/Player.lua +++ b/game/modules/tome/class/Player.lua @@ -925,8 +925,8 @@ function _M:playerCheckSustains() end end -function _M:playerLevelup(on_finish) - local ds = LevelupDialog.new(self, on_finish) +function _M:playerLevelup(on_finish, on_birth) + local ds = LevelupDialog.new(self, on_finish, on_birth) game:registerDialog(ds) end diff --git a/game/modules/tome/dialogs/LevelupDialog.lua b/game/modules/tome/dialogs/LevelupDialog.lua index ae05ae127cde121b54529b8f8419ae862ec25629..f788b5cf43b11fe09c19d676b1824bbd5c07f9d7 100644 --- a/game/modules/tome/dialogs/LevelupDialog.lua +++ b/game/modules/tome/dialogs/LevelupDialog.lua @@ -39,7 +39,8 @@ Category points left: #00FF00#%d#LAST# Class talent points left: #00FF00#%d#LAST# Generic talent points left: #00FF00#%d#LAST#]] -function _M:init(actor, on_finish) +function _M:init(actor, on_finish, on_birth) + self.on_birth = on_birth actor.no_last_learnt_talents_cap = true self.actor = actor self.unused_stats = self.actor.unused_stats @@ -478,6 +479,14 @@ function _M:finish() self.actor:forceUseTalent(tid, {ignore_energy=true, ignore_cd=true, no_equilibrium_fail=true, no_paradox_fail=true}) if self.actor:knowTalent(tid) then self.actor:forceUseTalent(tid, {ignore_energy=true, ignore_cd=true, no_equilibrium_fail=true, no_paradox_fail=true}) end end + + if not self.on_birth then + for t_id, _ in pairs(self.talents_learned) do + local t = self.actor:getTalentFromId(t_id) + if not self.actor:isTalentCoolingDown(t) then self.actor:startTalentCooldown(t) end + end + end + -- Achievements checks world:gainAchievement("ELEMENTALIST", self.actor) world:gainAchievement("WARPER", self.actor) diff --git a/src/map.c b/src/map.c index 595531ffe6784d95a8a9753aebc7b8ff43cd2e8f..554b9781081fde40659ec9f21eac380ed7b8b634 100644 --- a/src/map.c +++ b/src/map.c @@ -942,8 +942,11 @@ static int map_draw_seen_texture(lua_State *L) int mx = map->mx; int my = map->my; - x -= map->tile_w * (map->used_animdx + map->used_mx); - y -= map->tile_h * (map->used_animdy + map->used_my); +// x -= map->tile_w * (map->used_animdx + map->used_mx); +// y -= map->tile_h * (map->used_animdy + map->used_my); + x -= map->tile_w * (map->used_animdx + map->mx); + y -= map->tile_h * (map->used_animdy + map->my); + tglBindTexture(GL_TEXTURE_2D, map->seens_texture);