diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-10-19 16:47:30 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-10-19 16:47:30 +0000 |
commit | 5e17d1a084598a12fd1872f8c8c9965ecaed6592 (patch) | |
tree | e77d97dfddd8688ebd1433f575e3257654c8eb8c /src/map/pc.c | |
parent | 11e47ab6ff3d3ba751bf111d0c1948ac23dbb313 (diff) | |
download | hercules-5e17d1a084598a12fd1872f8c8c9965ecaed6592.tar.gz hercules-5e17d1a084598a12fd1872f8c8c9965ecaed6592.tar.bz2 hercules-5e17d1a084598a12fd1872f8c8c9965ecaed6592.tar.xz hercules-5e17d1a084598a12fd1872f8c8c9965ecaed6592.zip |
- Corrected a compilation error.
- Fixed SG_FRIEND, it should be triggering when Monks do Combo Finish (not triple blows), and the trigger rate increase should be based on your known level of SG_FRIEND, NOT TK_COUNTER.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9013 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index e615b1807..e7d47a2c6 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -3182,7 +3182,7 @@ int pc_show_steal(struct block_list *bl,va_list ap) int pc_steal_item(struct map_session_data *sd,struct block_list *bl, int lv) { static int i = 0; - int rate,itemid,flag; + int old_i,rate,itemid,flag; struct status_data *sd_status, *md_status; struct mob_data *md; struct item tmp_item; |