From bb1383459b1372b9587dd2d062fd7e6c0eadd635 Mon Sep 17 00:00:00 2001
From: otowakotori <806682153@qq.com>
Date: Sat, 21 Mar 2020 12:40:51 +0800
Subject: [PATCH] Rune: Blink los and description bug
 http://forums.te4.org/viewtopic.php?f=42&t=50677

---
 game/modules/tome/data/talents/misc/inscriptions.lua | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/game/modules/tome/data/talents/misc/inscriptions.lua b/game/modules/tome/data/talents/misc/inscriptions.lua
index e98665b060..f1b4074e61 100644
--- a/game/modules/tome/data/talents/misc/inscriptions.lua
+++ b/game/modules/tome/data/talents/misc/inscriptions.lua
@@ -653,7 +653,7 @@ newInscription{
 		local tg = self:getTalentTarget(t)
 		local x, y = self:getTarget(tg)
 		if not x then return end
-		if not self:hasLOS(x, y) then return end
+		if not self:hasLOS(x, y) or game.level.map:checkEntity(x, y, Map.TERRAIN, "block_move") then return end
 
 		local _ _, x, y = self:canProject(tg, x, y)
 		local rad = 0
@@ -673,7 +673,7 @@ newInscription{
 		local data = self:getInscriptionData(t.short_name)
 		local power = data.power + data.inc_stat * 3
 		return ([[Activate the rune to teleport up to %d spaces within line of sight.  Afterwards you stay out of phase for %d turns. In this state all new negative status effects duration is reduced by %d%%, your defense is increased by %d and all your resistances by %d%%.]]):
-			tformat(data.range + data.inc_stat, t.getDur(self, t), power, power, power)
+			tformat(t.range(self, t), t.getDur(self, t), power, power, power)
 	end,
 	short_info = function(self, t)
 		local data = self:getInscriptionData(t.short_name)
-- 
GitLab