diff options
author | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-01-24 17:38:17 +0000 |
---|---|---|
committer | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-01-24 17:38:17 +0000 |
commit | 4bf5fc03a70033962b6f0703780898c97eadf6ec (patch) | |
tree | 859d87f92c5a63e325abaf8d161910d65e803726 /src/map/map.c | |
parent | bbc69c87b96710a51b19b94aee1cedbb0f555336 (diff) | |
download | hercules-4bf5fc03a70033962b6f0703780898c97eadf6ec.tar.gz hercules-4bf5fc03a70033962b6f0703780898c97eadf6ec.tar.bz2 hercules-4bf5fc03a70033962b6f0703780898c97eadf6ec.tar.xz hercules-4bf5fc03a70033962b6f0703780898c97eadf6ec.zip |
* Changed all uses of struct skill_unit_group* to group_id in status_change_entry's. (last known 64bit portability issue)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13482 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.c')
-rw-r--r-- | src/map/map.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/map.c b/src/map/map.c index 14a93c669..03b095295 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -437,9 +437,9 @@ int map_moveblock(struct block_list *bl, int x1, int y1, unsigned int tick) if (sc->data[SC_CLOAKING]) skill_check_cloaking(bl, sc->data[SC_CLOAKING]); if (sc->data[SC_DANCING]) - skill_unit_move_unit_group((struct skill_unit_group *)sc->data[SC_DANCING]->val2, bl->m, x1-x0, y1-y0); + skill_unit_move_unit_group(skill_id2group(sc->data[SC_DANCING]->val2), bl->m, x1-x0, y1-y0); if (sc->data[SC_WARM]) - skill_unit_move_unit_group((struct skill_unit_group *)sc->data[SC_WARM]->val4, bl->m, x1-x0, y1-y0); + skill_unit_move_unit_group(skill_id2group(sc->data[SC_WARM]->val4), bl->m, x1-x0, y1-y0); } } } else |