diff options
author | Skotlex <Skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-08-03 14:36:00 +0000 |
---|---|---|
committer | Skotlex <Skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-08-03 14:36:00 +0000 |
commit | 419927ac9f5ea5b71b21b52728bb56925b797937 (patch) | |
tree | 8fe3adcbc09cd2f79f4a30dac35db73eda8c4cda /src/map/mob.c | |
parent | 9d4765e65ce8dd0eccd1cdd4dbaa346f5a9cd6ba (diff) | |
download | hercules-419927ac9f5ea5b71b21b52728bb56925b797937.tar.gz hercules-419927ac9f5ea5b71b21b52728bb56925b797937.tar.bz2 hercules-419927ac9f5ea5b71b21b52728bb56925b797937.tar.xz hercules-419927ac9f5ea5b71b21b52728bb56925b797937.zip |
- Merged a few minor bugfixes
- Merged in a bunch of the eA renewal support patch.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14368 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mob.c')
-rw-r--r-- | src/map/mob.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index b41f0db66..e1ba9cfea 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -599,7 +599,7 @@ int mob_spawn_guardian(const char* mapname, short x, short y, const char* mobnam return 0; } - if((x<=0 || y<=0) && !map_search_freecell(NULL, m, &x, &y, -1,-1, 0)) + if((x<=0 || y<=0) && !map_search_freecell(NULL, m, &x, &y, -1,-1, 1)) { ShowWarning("mob_spawn_guardian: Couldn't locate a spawn cell for guardian class %d (index %d) at castle map %s\n",class_, guardian, map[m].name); return 0; @@ -690,7 +690,7 @@ int mob_spawn_bg(const char* mapname, short x, short y, const char* mobname, int } data.class_ = class_; - if( (x <= 0 || y <= 0) && !map_search_freecell(NULL, m, &x, &y, -1,-1, 0) ) + if( (x <= 0 || y <= 0) && !map_search_freecell(NULL, m, &x, &y, -1,-1, 1) ) { ShowWarning("mob_spawn_bg: Couldn't locate a spawn cell for guardian class %d (bg_id %d) at map %s\n",class_, bg_id, map[m].name); return 0; |