diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-10-31 13:20:48 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-10-31 13:20:48 +0000 |
commit | 5792a98ec3a549d28037c65465db8c64e009823d (patch) | |
tree | 43ac7806ce57d4e678cd995d2a1828f5d44978c5 /src/map/skill.c | |
parent | 6e103602b6e23f86fd89f9c48a0846b4243f2c5f (diff) | |
download | hercules-5792a98ec3a549d28037c65465db8c64e009823d.tar.gz hercules-5792a98ec3a549d28037c65465db8c64e009823d.tar.bz2 hercules-5792a98ec3a549d28037c65465db8c64e009823d.tar.xz hercules-5792a98ec3a549d28037c65465db8c64e009823d.zip |
* Added names to the SC_ and SI_ enums, now they can be used to properly indicate where such values are to be used (replaces usage of 'int')
* removed MIN_/MAX_PORTAL_MEMO, set MAX_MEMOPOINTS from 10 to 3
* removed support for @go-ing to your memo points
* simplified the overly verbose @memo command; now re-uses pc_memo()
* cleaned up pc_memo(), now uses semi-correct packet replies
* Minor code cleaning/formatting
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11625 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/skill.c')
-rw-r--r-- | src/map/skill.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/skill.c b/src/map/skill.c index f991275a6..f24073eda 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -5612,7 +5612,7 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, in continue; if(map_getcell(src->m,src->x+dx[j],src->y+dy[j],CELL_CHKNOREACH)) dx[j] = dy[j] = 0; - pc_setpos(dstsd, map[src->m].index, src->x+dx[j], src->y+dy[j], 2); + pc_setpos(dstsd, map_id2index(src->m), src->x+dx[j], src->y+dy[j], 2); } } if (sd) @@ -10308,13 +10308,13 @@ int skill_unit_timer_sub (struct block_list* bl, va_list ap) sd = map_charid2sd(group->val1); group->val1 = 0; if (sd && !map[sd->bl.m].flag.nowarp) - pc_setpos(sd,map[unit->bl.m].index,unit->bl.x,unit->bl.y,3); + pc_setpos(sd,map_id2index(unit->bl.m),unit->bl.x,unit->bl.y,3); } if(group->val2) { sd = map_charid2sd(group->val2); group->val2 = 0; if (sd && !map[sd->bl.m].flag.nowarp) - pc_setpos(sd,map[unit->bl.m].index,unit->bl.x,unit->bl.y,3); + pc_setpos(sd,map_id2index(unit->bl.m),unit->bl.x,unit->bl.y,3); } skill_delunit(unit); } |