summaryrefslogtreecommitdiffstats
path: root/src/MobCensus.cpp
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2013-12-20 16:22:16 +0100
committermadmaxoft <github@xoft.cz>2013-12-20 16:22:16 +0100
commiteabb88eb7493a48b65d9bcceadaa9b0bfec9ec03 (patch)
tree8409c1f3785c356d07edb29992c20abd6865de9d /src/MobCensus.cpp
parentFixed warnings in HTTP parser. (diff)
downloadcuberite-eabb88eb7493a48b65d9bcceadaa9b0bfec9ec03.tar
cuberite-eabb88eb7493a48b65d9bcceadaa9b0bfec9ec03.tar.gz
cuberite-eabb88eb7493a48b65d9bcceadaa9b0bfec9ec03.tar.bz2
cuberite-eabb88eb7493a48b65d9bcceadaa9b0bfec9ec03.tar.lz
cuberite-eabb88eb7493a48b65d9bcceadaa9b0bfec9ec03.tar.xz
cuberite-eabb88eb7493a48b65d9bcceadaa9b0bfec9ec03.tar.zst
cuberite-eabb88eb7493a48b65d9bcceadaa9b0bfec9ec03.zip
Diffstat (limited to 'src/MobCensus.cpp')
-rw-r--r--src/MobCensus.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/MobCensus.cpp b/src/MobCensus.cpp
index 66b5932bc..9c32bf695 100644
--- a/src/MobCensus.cpp
+++ b/src/MobCensus.cpp
@@ -19,7 +19,6 @@ void cMobCensus::CollectMob(cMonster & a_Monster, cChunk & a_Chunk, double a_Dis
bool cMobCensus::IsCapped(cMonster::eFamily a_MobFamily)
{
- bool toReturn = true;
const int ratio = 319; // this should be 256 as we are only supposed to take account from chunks that are in 17x17 from a player
// but for now, we use all chunks loaded by players. that means 19 x 19 chunks. That's why we use 256 * (19*19) / (17*17) = 319
// MG TODO : code the correct count
@@ -42,9 +41,12 @@ int cMobCensus::GetCapMultiplier(cMonster::eFamily a_MobFamily)
case cMonster::mfPassive: return 11;
case cMonster::mfAmbient: return 16;
case cMonster::mfWater: return 5;
+ default:
+ {
+ ASSERT(!"Unhandled mob family");
+ return -1;
+ }
}
- ASSERT(!"Unhandled mob family");
- return -1;
}