diff --git a/game/modules/tome/class/Actor.lua b/game/modules/tome/class/Actor.lua index 8a03f03301fb6f15f62b9078478816fa42e939ed..48ff4b3beeec453567781b4f1e28c912b333670a 100644 --- a/game/modules/tome/class/Actor.lua +++ b/game/modules/tome/class/Actor.lua @@ -2375,7 +2375,7 @@ function _M:onTakeHit(value, src, death_note) if value > 0 and self:knowTalent(self.T_MITOSIS) and self:isTalentActive(self.T_MITOSIS) then local t = self:getTalentFromId(self.T_MITOSIS) local chance = t.getChance(self, t) - local perc = math.min(1, 3 * value / self.life) + local perc = math.min(1, 3 * value / math.max(self.life, 1)) if rng.percent(chance * perc) then t.spawn(self, t, value * 2) end diff --git a/game/modules/tome/class/Game.lua b/game/modules/tome/class/Game.lua index ae57364eb6955751eebcec8ccc982dcd2b89b384..8dad0b8e72a26b6db000680d8c0df4cf421d3b8c 100644 --- a/game/modules/tome/class/Game.lua +++ b/game/modules/tome/class/Game.lua @@ -2016,12 +2016,12 @@ function _M:setupCommands() [{"_g","ctrl"}] = function() if config.settings.cheat then self:changeLevel(game.level.level + 1) do return end - game.player:takeHit(100, game.player) -do return end - local f, err = loadfile("/data/general/events/rat-lich.lua") + local f, err = loadfile("/data/general/events/weird-pedestals.lua") print(f, err) setfenv(f, setmetatable({level=self.level, zone=self.zone}, {__index=_G})) print(pcall(f)) +do return end + game.player:takeHit(100, game.player) do return end package.loaded["mod.dialogs.shimmer.ShimmerDemo"] = nil self:registerDialog(require("mod.dialogs.shimmer.ShimmerDemo").new(game.player, "iron throne couture: "))