diff --git a/game/modules/tome/class/Player.lua b/game/modules/tome/class/Player.lua index 6bee8fcc144897f2fce7ab8fb93ba4a0cbef97d0..9669ed02abef206b81b63c6006dbb95f2a5aecc2 100644 --- a/game/modules/tome/class/Player.lua +++ b/game/modules/tome/class/Player.lua @@ -316,7 +316,7 @@ function _M:playerFOV() eff.x, eff.y, game.level.map.w, game.level.map.h, eff.radius, function(_, x, y) if map:checkAllEntities(x, y, "block_sight", self) then return true end end, function(_, x, y) local t = map(x, y, map.ACTOR) - if t and (eff.true_seeing or self:canSee(t)) then map.seens(x, y, 1) end + if t and (eff.true_seeing or self:canSee(t)) then map.seens(x, y, 1) self.can_see_cache[t]["nil/nil"] = {true,100} end end, cache and map._fovcache["block_sight"] )