summaryrefslogtreecommitdiff
path: root/src/map
diff options
context:
space:
mode:
author(no author) <(no author)@54d463be-8e91-2dee-dedb-b68131a5f0ec>2005-02-11 14:00:26 +0000
committer(no author) <(no author)@54d463be-8e91-2dee-dedb-b68131a5f0ec>2005-02-11 14:00:26 +0000
commita1b35482fdba21356c1d7e90e55ea213a8af0f58 (patch)
tree4d6f6e1a2dd492e57473f0c75511ecf6ddc11d0e /src/map
parentd4e895de213f20d1e66846b25afee77dd310a28a (diff)
downloadhercules-a1b35482fdba21356c1d7e90e55ea213a8af0f58.tar.gz
hercules-a1b35482fdba21356c1d7e90e55ea213a8af0f58.tar.bz2
hercules-a1b35482fdba21356c1d7e90e55ea213a8af0f58.tar.xz
hercules-a1b35482fdba21356c1d7e90e55ea213a8af0f58.zip
Remove debug printf's
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@1074 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map')
-rw-r--r--src/map/map.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/map/map.c b/src/map/map.c
index 9515e8233..cdac73838 100644
--- a/src/map/map.c
+++ b/src/map/map.c
@@ -693,8 +693,6 @@ void map_foreachinpath(int (*func)(struct block_list*,va_list),int m,int x0,int
if(bl && type && bl->type!=type)
continue;
if(bl) {
- printf ("%lf %lf\n", s * bl->x + in - bl->y, (in - bl->y)/s - bl->x);
-
if (((s == 999 && bl->x == x0) ||
(s == 0 && in == y0 && bl->y == y0) ||
abs(s * bl->x + in - bl->y) <= range ||
@@ -712,7 +710,6 @@ void map_foreachinpath(int (*func)(struct block_list*,va_list),int m,int x0,int
c = map[m].block_mob_count[bx+by*map[m].bxs];
for(i=0;i<c && bl;i++,bl=bl->next){
if(bl) {
- printf ("%lf %lf\n", s * bl->x + in - bl->y, (bl->y - in)/s - bl->x);
if (((s == 999 && bl->x == x0) ||
(s == 0 && in == y0 && bl->y == y0) ||
abs(s * bl->x + in - bl->y) <= range ||