diff options
author | Inkfish <Inkfish@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-10-27 14:46:42 +0000 |
---|---|---|
committer | Inkfish <Inkfish@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-10-27 14:46:42 +0000 |
commit | d923a94a3b12267712d2c2c33bfff66c9e51557f (patch) | |
tree | ec240964af7b70a9f2aba951239aa550687505b7 /src/map/unit.c | |
parent | 5612c2738964c0747ecf754b7cf5f834b3e09cef (diff) | |
download | hercules-d923a94a3b12267712d2c2c33bfff66c9e51557f.tar.gz hercules-d923a94a3b12267712d2c2c33bfff66c9e51557f.tar.bz2 hercules-d923a94a3b12267712d2c2c33bfff66c9e51557f.tar.xz hercules-d923a94a3b12267712d2c2c33bfff66c9e51557f.zip |
* Cast time of Emergency Call is doubled if you master of High Jump.
* High Jump can't be used on PvP maps.
* Fixed a potential null pointer from last commit.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14106 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/unit.c')
-rw-r--r-- | src/map/unit.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/map/unit.c b/src/map/unit.c index c75600180..56969f1db 100644 --- a/src/map/unit.c +++ b/src/map/unit.c @@ -1043,7 +1043,11 @@ int unit_skilluse_id2(struct block_list *src, int target_id, short skill_num, sh if( k > 2 ) k = 2; // ...but hard-limited to 300%. casttime += casttime * k; } - break; + break; + case GD_EMERGENCYCALL: //Emergency Call double cast when the user has learned Leap [Daegaladh] + if( sd && pc_checkskill(sd,TK_HIGHJUMP) ) + casttime *= 2; + break; } // moved here to prevent Suffragium from ending if skill fails |