Fixed a mistake in r11991 that let knockback work through walls

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@12010 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
ultramage
2008-01-04 13:00:49 +00:00
parent e7bb626a80
commit c29f4e1823
2 changed files with 3 additions and 2 deletions

View File

@@ -180,9 +180,9 @@ int path_blownpos(int m,int x0,int y0,int dx,int dy,int count)
else
dy=0;
}
else if( !fx )
if( !fx )
dx=0;
else if( !fy )
if( !fy )
dy=0;
}