From 8e0e5ab10ccb1e145092fe20eaa8f69cb6504321 Mon Sep 17 00:00:00 2001
From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54>
Date: Tue, 4 Dec 2012 01:01:50 +0000
Subject: [PATCH] fix a bug

git-svn-id: http://svn.net-core.org/repos/t-engine4@5904 51575b47-30f0-44d4-a5cc-537603b46e54
---
 game/engines/default/engine/interface/ActorProject.lua | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/game/engines/default/engine/interface/ActorProject.lua b/game/engines/default/engine/interface/ActorProject.lua
index f1b7797471..e7d7e8f49c 100644
--- a/game/engines/default/engine/interface/ActorProject.lua
+++ b/game/engines/default/engine/interface/ActorProject.lua
@@ -268,8 +268,8 @@ function _M:canProject(t, x, y)
 		return
 	end
 
-	if stop_x == x and stop_y == y then return true, stop_x, stop_y, stop_x, stop_y end
-	return false, stop_x, stop_y, stop_radius_x, stop_radius_y
+	local is_hit = stop_x == x and stop_y == y
+	return is_hit, stop_x, stop_y, stop_radius_x, stop_radius_y
 end
 
 --- Project damage to a distance using a moving projectile
-- 
GitLab