From 0e2653a592fe17e8bb6d5241150145244fead3a8 Mon Sep 17 00:00:00 2001 From: DarkGod <darkgod@net-core.org> Date: Sun, 29 Dec 2019 21:40:59 +0100 Subject: [PATCH] Fixed Mitosis not worked with negative life --- game/modules/tome/class/Actor.lua | 2 +- game/modules/tome/class/Game.lua | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/game/modules/tome/class/Actor.lua b/game/modules/tome/class/Actor.lua index 8a03f03301..48ff4b3bee 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 ae57364eb6..8dad0b8e72 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: ")) -- GitLab