diff options
author | rud0lp20 <rud0lp20@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-29 14:33:16 +0000 |
---|---|---|
committer | rud0lp20 <rud0lp20@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-29 14:33:16 +0000 |
commit | fbf1a94396d200e8ae6e6d0d30e291e95f85cf90 (patch) | |
tree | df95f11658e24a27a369b40d0744c3d657a3cfcc /src/map/homunculus.c | |
parent | 131a6f555562e56dfb180b310d4c893a993e7b15 (diff) | |
download | hercules-fbf1a94396d200e8ae6e6d0d30e291e95f85cf90.tar.gz hercules-fbf1a94396d200e8ae6e6d0d30e291e95f85cf90.tar.bz2 hercules-fbf1a94396d200e8ae6e6d0d30e291e95f85cf90.tar.xz hercules-fbf1a94396d200e8ae6e6d0d30e291e95f85cf90.zip |
Fixed some compile warnings.(bugreport:6352, bugreport:6361)
Follow up r16520 added some missing entry in packet_db.txt where my patch doesn't include it...XD
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16530 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/homunculus.c')
-rw-r--r-- | src/map/homunculus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/homunculus.c b/src/map/homunculus.c index 1d7b44168..aaf6dd410 100644 --- a/src/map/homunculus.c +++ b/src/map/homunculus.c @@ -371,7 +371,7 @@ int hom_mutate(struct homun_data *hd, int homun_id) m_class = hom_class2mapid(hd->homunculus.class_); m_id = hom_class2mapid(homun_id); - if( !m_class&HOM_EVO || !m_id&HOM_S ) { + if( !(m_class&HOM_EVO) || !(m_id&HOM_S) ) { clif_emotion(&hd->bl, E_SWT); return 0; } |