diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-14 17:51:42 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-14 17:51:42 +0000 |
commit | de8f91ae9dcda19d7a931e67104cc8fde86d0b73 (patch) | |
tree | 533057c803e498f1456ba90d020c4d65e83910c1 /src/map/clif.c | |
parent | 3f8b52f6d673b3e5d259a9bb10004375d7647533 (diff) | |
download | hercules-de8f91ae9dcda19d7a931e67104cc8fde86d0b73.tar.gz hercules-de8f91ae9dcda19d7a931e67104cc8fde86d0b73.tar.bz2 hercules-de8f91ae9dcda19d7a931e67104cc8fde86d0b73.tar.xz hercules-de8f91ae9dcda19d7a931e67104cc8fde86d0b73.zip |
- Fixed incorrect range check in autospell2 triggers.
- Modified Wedding recall skills to behave as in officials.
- Modified Arrow Shower to be a ground-based skill and work as it should on officials.
- Fixed skill_additional_effect triggering every time you were being hit even if no damage was returned.
- Fixed battle_calc_damage_return to make magic damage be returned by 100%, and received damage nullified
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5598 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index ccf647414..074f918ab 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -4609,7 +4609,7 @@ int clif_getareachar_skillunit(struct map_session_data *sd,struct skill_unit *un WFIFOW(fd,12)=unit->bl.y;
WFIFOB(fd,14)=unit->group->unit_id;
WFIFOB(fd,15)=1;
- if(unit->group->unit_id==0xb0) { // Graffiti [Valaris]
+ if(unit->group->unit_id==UNT_GRAFFITI) { // Graffiti [Valaris]
WFIFOB(fd,16)=1;
memcpy(WFIFOP(fd,17),unit->group->valstr,MESSAGE_SIZE);
} else {
|