diff options
author | Haru <haru@dotalux.com> | 2016-07-14 03:28:53 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-07-14 03:28:53 +0200 |
commit | 7bcb379c83327331bda05a23000dc0a6bbbefa48 (patch) | |
tree | 5c0911e81606e0c41008a7f8e0b990114ae24051 /src/map/skill.c | |
parent | 968e3cddbd3394607ae34f56ba8ee12d78bad1a5 (diff) | |
download | hercules-7bcb379c83327331bda05a23000dc0a6bbbefa48.tar.gz hercules-7bcb379c83327331bda05a23000dc0a6bbbefa48.tar.bz2 hercules-7bcb379c83327331bda05a23000dc0a6bbbefa48.tar.xz hercules-7bcb379c83327331bda05a23000dc0a6bbbefa48.zip |
Changed mmo_charstatus::base_level and mmo_charstatus::job_level to int
Fixes several -Wsign-compare issues
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/skill.c')
-rw-r--r-- | src/map/skill.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/skill.c b/src/map/skill.c index 2962cb76e..0c2f099fb 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -6891,7 +6891,7 @@ int skill_castend_nodamage_id(struct block_list *src, struct block_list *bl, uin return 1; } if( skill_id == AM_BERSERKPITCHER ) { - if( dstsd && dstsd->status.base_level < (unsigned int)sd->inventory_data[i]->elv ) { + if (dstsd && dstsd->status.base_level < sd->inventory_data[i]->elv) { clif->skill_fail(sd,skill_id,USESKILL_FAIL_LEVEL,0); map->freeblock_unlock(); return 1; @@ -15322,7 +15322,7 @@ void skill_weaponrefine (struct map_session_data *sd, int idx) if( sd->status.class_ == JOB_MECHANIC_T ) per += 100; else - per += 5 * ((signed int)sd->status.job_level - 50); + per += 5 * (sd->status.job_level - 50); pc->delitem(sd, i, 1, 0, DELITEM_NORMAL, LOG_TYPE_REFINE); // FIXME: is this the correct reason flag? if (per > rnd() % 1000) { |