diff options
Diffstat (limited to '')
-rw-r--r-- | src/MobCensus.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/MobCensus.cpp b/src/MobCensus.cpp index 5340c089d..1069a964e 100644 --- a/src/MobCensus.cpp +++ b/src/MobCensus.cpp @@ -22,11 +22,8 @@ bool cMobCensus::IsCapped(cMonster::eFamily a_MobFamily) const int ratio = 319; // This should be 256 as we are only supposed to take account from chunks that are in 17 x 17 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 - if ((GetCapMultiplier(a_MobFamily) * GetNumChunks()) / ratio >= m_MobFamilyCollecter.GetNumberOfCollectedMobs(a_MobFamily)) - { - return false; - } - return true; + const auto MobCap = ((GetCapMultiplier(a_MobFamily) * GetNumChunks()) / ratio); + return (MobCap < m_MobFamilyCollecter.GetNumberOfCollectedMobs(a_MobFamily)); } |