diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-11-24 14:49:55 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-11-24 14:49:55 +0000 |
commit | d38ebf04d586987812b1c92d919bcac7e2f99d2e (patch) | |
tree | 26b1796f8ffba759dfd7dfcd7205a98f5df2b6b9 /src/map/pc.c | |
parent | a22a322ce7be85620c1156c542e7b15761fe2f34 (diff) | |
download | hercules-d38ebf04d586987812b1c92d919bcac7e2f99d2e.tar.gz hercules-d38ebf04d586987812b1c92d919bcac7e2f99d2e.tar.bz2 hercules-d38ebf04d586987812b1c92d919bcac7e2f99d2e.tar.xz hercules-d38ebf04d586987812b1c92d919bcac7e2f99d2e.zip |
- The check that blocks the skill AL_TELEPORT on noteleport maps will be overriden when you use Flywings/Butterfly wings, so B Wings are usable again in noteleport maps.
- Removed a fd check in foreachinmovearea, which explains why autotraders sometimes were invisible to people who walked within sight of them
- Corrected the ignore list sorting function to account for entries with no names so they are sent to the end, not the beginning.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9311 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index a589694d8..5a41868d2 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -2883,7 +2883,7 @@ int pc_isUseitem(struct map_session_data *sd,int n) clif_displaymessage(sd->fd, "Duel: Can't use this item in duel."); return 0; } - //Butterfly Wing (can't use noreturn flag is on and if duel) + //Butterfly Wing (can't use noreturn flag is on) if(nameid == 602 && map[sd->bl.m].flag.noreturn) return 0; //Dead Branch & Bloody Branch & Porings Box (can't use at GVG and when nobranch flag is on) |