From 5d9b5bbc0fc7e9e6e3ebec6b95b4e4c3a07501cc Mon Sep 17 00:00:00 2001 From: DarkGod <darkgod@net-core.org> Date: Fri, 4 Sep 2020 14:31:17 +0200 Subject: [PATCH] meh --- game/modules/tome/data/talents/psionic/augmented-striking.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/game/modules/tome/data/talents/psionic/augmented-striking.lua b/game/modules/tome/data/talents/psionic/augmented-striking.lua index 018d4192ee..9aba052d4a 100644 --- a/game/modules/tome/data/talents/psionic/augmented-striking.lua +++ b/game/modules/tome/data/talents/psionic/augmented-striking.lua @@ -171,13 +171,13 @@ newTalent{ self.temporary = self.temporary - 1 if self.temporary <= 0 then game.level.map(self.x, self.y, engine.Map.TERRAIN, self.old_feat) - game.level:removeEntity(self) + game.level:removeEntity(self, true) game.level.map:updateMap(self.x, self.y) game.nicer_tiles:updateAround(game.level, self.x, self.y) end end, dig = function(src, x, y, old) - game.level:removeEntity(old) + game.level:removeEntity(old, true) return nil, old.old_feat end, summoner_gain_exp = true, -- GitLab