diff options
author | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-01-06 16:43:02 +0000 |
---|---|---|
committer | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-01-06 16:43:02 +0000 |
commit | 0c8a19560039317e3db5c126d0e76a231615b4ac (patch) | |
tree | 2cddc8361f0f9328a58d0a401fc27b3b688ffa97 /src/map/status.c | |
parent | 9827189a901458193bbc0c66081ae9a50576fd20 (diff) | |
download | hercules-0c8a19560039317e3db5c126d0e76a231615b4ac.tar.gz hercules-0c8a19560039317e3db5c126d0e76a231615b4ac.tar.bz2 hercules-0c8a19560039317e3db5c126d0e76a231615b4ac.tar.xz hercules-0c8a19560039317e3db5c126d0e76a231615b4ac.zip |
- Fixed a visual itemdupple bug on mail system.
- Fixed Overthrusth status cannot being recalled at same skill lvl.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12023 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/status.c b/src/map/status.c index c4cca766a..c56a764a1 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -4925,7 +4925,7 @@ int status_change_start(struct block_list* bl,enum sc_type type,int rate,int val case SC_ADRENALINE2: case SC_WEAPONPERFECTION: case SC_OVERTHRUST: - if (sce->val2 > val2) + if (sce->val1 > val1) return 0; break; case SC_HPREGEN: |