diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-22 16:47:03 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-22 16:47:03 +0000 |
commit | 2780b8440b598c0ceb8a391cfb4c2b9724511651 (patch) | |
tree | f47c4a6a5748c107f0a9370ef3e077dbc628c3ee /src/map/skill.c | |
parent | 2fb26a430a18adfe09a97f9e6e5d0f1972a727eb (diff) | |
download | hercules-2780b8440b598c0ceb8a391cfb4c2b9724511651.tar.gz hercules-2780b8440b598c0ceb8a391cfb4c2b9724511651.tar.bz2 hercules-2780b8440b598c0ceb8a391cfb4c2b9724511651.tar.xz hercules-2780b8440b598c0ceb8a391cfb4c2b9724511651.zip |
- Applied Toms's suggested corrections to homun code.
- Corrected Cannibalize/Marine Sphere ignoring the selected summon spot.
- Fixed looting pets ignoring the item pick-up priority of other players.
- Should have fixed a signess warning in login txt.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7828 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/skill.c')
-rw-r--r-- | src/map/skill.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/skill.c b/src/map/skill.c index e06b5f2ef..92af54cb9 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -6212,7 +6212,7 @@ int skill_castend_pos2 (struct block_list *src, int x, int y, int skillid, int s struct mob_data *md; // Correct info, don't change any of this! [celest] - md = mob_once_spawn_sub(src, src->m, -1, -1, sd->status.name,class_,""); + md = mob_once_spawn_sub(src, src->m, x, y, sd->status.name,class_,""); if (md) { md->master_id = src->id; md->special_state.ai = skillid==AM_SPHEREMINE?2:3; |