diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-04-23 13:57:22 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-04-23 13:57:22 +0000 |
commit | ed41067640c512709c2cdbed42241840a22ba23e (patch) | |
tree | 05b7c6fff80ac7c96a06c228ae223a1e2bd8846c /src/map/clif.c | |
parent | e11769f4b0ff9dc912f1d7a442248f824717c763 (diff) | |
download | hercules-ed41067640c512709c2cdbed42241840a22ba23e.tar.gz hercules-ed41067640c512709c2cdbed42241840a22ba23e.tar.bz2 hercules-ed41067640c512709c2cdbed42241840a22ba23e.tar.xz hercules-ed41067640c512709c2cdbed42241840a22ba23e.zip |
Made some adjustments to the land skill code, based on official information:
- Expanded and corrected the land skill view id enum in skill.h
- Renamed UNT_ATTACK_SKILLS to UNT_DUMMYSKILL and UNT_KAENSIN to UNT_KAEN (official terminology)
- changed GS_DESPERADO to use the UNT_DUMMYSKILL view id instead of UNT_KAENSIN (and is it supposed to be a land skill at all?)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13688 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 cb4450b6d..bc2392504 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -3753,7 +3753,7 @@ static void clif_getareachar_skillunit(struct map_session_data *sd, struct skill WFIFOW(fd,10)=unit->bl.x; WFIFOW(fd,12)=unit->bl.y; if (battle_config.traps_setting&1 && skill_get_inf2(unit->group->skill_id)&INF2_TRAP) - WFIFOB(fd,14)=UNT_ATTACK_SKILLS; //Use invisible unit id for traps. + WFIFOB(fd,14)=UNT_DUMMYSKILL; //Use invisible unit id for traps. else WFIFOB(fd,14)=unit->group->unit_id; WFIFOB(fd,15)=1; // ignored by client (always gets set to 1) |