From 1522c8ebeeeb439bd4360186743f5a7ca100427c Mon Sep 17 00:00:00 2001
From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54>
Date: Sat, 11 Jun 2011 11:06:16 +0000
Subject: [PATCH] Flying text incoming damage now "sinks" instead of rising up

git-svn-id: http://svn.net-core.org/repos/t-engine4@3621 51575b47-30f0-44d4-a5cc-537603b46e54
---
 game/modules/tome/class/Game.lua | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/game/modules/tome/class/Game.lua b/game/modules/tome/class/Game.lua
index 2d376e64a6..e0bc202b71 100644
--- a/game/modules/tome/class/Game.lua
+++ b/game/modules/tome/class/Game.lua
@@ -755,7 +755,7 @@ function _M:displayDelayedLogDamage()
 				if game.level.map.seens(x, y) and (rsrc == game.player or game.party:hasMember(rsrc)) then
 					game.flyers:add(sx, sy, 30, (rng.range(0,2)-1) * 0.5, rng.float(-3, -2), tostring(-math.ceil(dams.total)), {0,255,0})
 				elseif game.level.map.seens(x, y) and (rtarget == game.player or game.party:hasMember(rtarget)) then
-					game.flyers:add(sx, sy, 30, (rng.range(0,2)-1) * 0.5, rng.float(-3, -2), tostring(-math.ceil(dams.total)), {255,0,0})
+					game.flyers:add(sx, sy, 30, (rng.range(0,2)-1) * 0.5, -rng.float(-3, -2), tostring(-math.ceil(dams.total)), {255,0,0})
 				end
 			end
 		end
-- 
GitLab