diff options
author | Vicious <Vicious@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-30 15:48:12 +0000 |
---|---|---|
committer | Vicious <Vicious@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-30 15:48:12 +0000 |
commit | c21ff61bc4364cd79a24e788beacd0fcb8c5cc30 (patch) | |
tree | a3a16ceb59c88ff319cc0453c6a18fdb7b95c7f6 /src/map/status.c | |
parent | a3d6c7f96996ba1eaa689dd14d7369a4116b1c42 (diff) | |
download | hercules-c21ff61bc4364cd79a24e788beacd0fcb8c5cc30.tar.gz hercules-c21ff61bc4364cd79a24e788beacd0fcb8c5cc30.tar.bz2 hercules-c21ff61bc4364cd79a24e788beacd0fcb8c5cc30.tar.xz hercules-c21ff61bc4364cd79a24e788beacd0fcb8c5cc30.zip |
GS Skill updates/fixes
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7979 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/status.c b/src/map/status.c index ada20d59e..5d5c0c6a4 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -1992,7 +1992,7 @@ int status_calc_pc(struct map_session_data* sd,int first) status->aspd_rate -= 30*skill; if((skill=pc_checkskill(sd,GS_SINGLEACTION))>0 && (sd->status.weapon >= W_REVOLVER && sd->status.weapon <= W_GRENADE)) - status->aspd_rate -= 5*skill; + status->aspd_rate -= (int)((skill+1)/2) * 10; if(pc_isriding(sd)) status->aspd_rate += 500-100*pc_checkskill(sd,KN_CAVALIERMASTERY); @@ -3242,7 +3242,7 @@ static signed short status_calc_hit(struct block_list *bl, struct status_change if(sc->data[SC_BLIND].timer != -1) hit -= hit * 25/100; if(sc->data[SC_ADJUSTMENT].timer!=-1) - hit += 30; + hit -= 30; if(sc->data[SC_INCREASING].timer!=-1) hit += 20; // RockmanEXE; changed based on updated [Reddozen] |