diff options
author | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-12-25 11:06:22 +0000 |
---|---|---|
committer | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-12-25 11:06:22 +0000 |
commit | c60a65af0a205559f378c287b9f4fd12698fb0f1 (patch) | |
tree | 6babb33d4348932f8318da12bd184027b27dde94 /src/map/clif.c | |
parent | 70a82456ade2c41fe8b6cf9ef3774428453b1c31 (diff) | |
download | hercules-c60a65af0a205559f378c287b9f4fd12698fb0f1.tar.gz hercules-c60a65af0a205559f378c287b9f4fd12698fb0f1.tar.bz2 hercules-c60a65af0a205559f378c287b9f4fd12698fb0f1.tar.xz hercules-c60a65af0a205559f378c287b9f4fd12698fb0f1.zip |
Fixed Katar critical boost on status window (would work; but not change the value in the window), bugreport:3053
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15267 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index a8969d38e..ac5ee91e3 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -2587,6 +2587,8 @@ int clif_updatestatus(struct map_session_data *sd,int type) break; case SP_CRITICAL: WFIFOL(fd,4)=sd->battle_status.cri/10; + if(sd->status.weapon == W_KATAR) + WFIFOL(fd,4) <<=1; break; case SP_MATK1: WFIFOL(fd,4)=sd->battle_status.matk_max; |