summaryrefslogtreecommitdiff
path: root/src/map/homunculus.c
diff options
context:
space:
mode:
authorshennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-07-18 19:59:36 +0000
committershennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-07-18 19:59:36 +0000
commit9fa4acce4a3fd134993a5cfe18506392dbfa5555 (patch)
treec0e1375d7db8c5bdca703b63298fb56805e3b2e4 /src/map/homunculus.c
parentcd45c30ab2dcc44bfbfac283d15bb09b3d4644bc (diff)
downloadhercules-9fa4acce4a3fd134993a5cfe18506392dbfa5555.tar.gz
hercules-9fa4acce4a3fd134993a5cfe18506392dbfa5555.tar.bz2
hercules-9fa4acce4a3fd134993a5cfe18506392dbfa5555.tar.xz
hercules-9fa4acce4a3fd134993a5cfe18506392dbfa5555.zip
Follow up r16427 fixed issue with parenthesis logic and a battle.c warning on missing parenthesis
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16444 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/homunculus.c')
-rw-r--r--src/map/homunculus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/homunculus.c b/src/map/homunculus.c
index 6787ca43d..1d7b44168 100644
--- a/src/map/homunculus.c
+++ b/src/map/homunculus.c
@@ -244,7 +244,7 @@ int merc_hom_levelup(struct homun_data *hd)
m_class = hom_class2mapid(hd->homunculus.class_);
- if((m_class&HOM_REG) && hd->homunculus.level >= battle_config.hom_max_level || (m_class&HOM_S) && hd->homunculus.level >= battle_config.hom_S_max_level || !hd->exp_next || hd->homunculus.exp < hd->exp_next)
+ if((m_class&HOM_REG) && (hd->homunculus.level >= battle_config.hom_max_level || ((m_class&HOM_S) && hd->homunculus.level >= battle_config.hom_S_max_level) || !hd->exp_next || hd->homunculus.exp < hd->exp_next))
return 0 ;
hom = &hd->homunculus;