diff options
author | Inkfish <Inkfish@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-06-05 15:55:37 +0000 |
---|---|---|
committer | Inkfish <Inkfish@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-06-05 15:55:37 +0000 |
commit | 62661b8f478486e970860072d7db86f11c59514d (patch) | |
tree | 0609cf2af171d527e56e0bf639e3cd7eb297397d /src/map/pc.c | |
parent | 7fa39d09939706c5ce829c7a44766ba8c101efd2 (diff) | |
download | hercules-62661b8f478486e970860072d7db86f11c59514d.tar.gz hercules-62661b8f478486e970860072d7db86f11c59514d.tar.bz2 hercules-62661b8f478486e970860072d7db86f11c59514d.tar.xz hercules-62661b8f478486e970860072d7db86f11c59514d.zip |
* Job_Battle_Manual and Battle_Manual can be used simultaneously.
* Fixed "sleep" after "attachrid" (a different rid) halts the script.(bugreport:3181)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13846 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index b1e558bc3..01e683ea0 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -3406,10 +3406,13 @@ int pc_isUseitem(struct map_session_data *sd,int n) case 14532: // Battle_Manual25 case 14533: // Battle_Manual100 case 14545: // Battle_Manual300 - case 14592: // JOB_Battle_Manual if( sd->sc.data[SC_EXPBOOST] ) return 0; break; + case 14592: // JOB_Battle_Manual + if( sd->sc.data[SC_JEXPBOOST] ) + return 0; + break; // Mercenary Items |