From b9869eef99429c122d64b2b815f96573f119b3c8 Mon Sep 17 00:00:00 2001 From: Chuck Miller Date: Sun, 11 Oct 2009 14:15:19 -0400 Subject: Only use the first 1000 skills in level calulation After 1000 is reserved for crafting skills --- src/game-server/character.cpp | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/game-server/character.cpp b/src/game-server/character.cpp index 57055041..89249022 100644 --- a/src/game-server/character.cpp +++ b/src/game-server/character.cpp @@ -504,9 +504,13 @@ void Character::recalculateLevel() std::map::const_iterator a; for (a = getSkillBegin(); a != getSkillEnd(); a++) { - float expGot = getExpGot(a->first); - float expNeed = getExpNeeded(a->first); - levels.push_back(getAttribute(a->first) + expGot / expNeed); + // Only use the first 1000 skill levels in calulation + if (a->first < 1000) + { + float expGot = getExpGot(a->first); + float expNeed = getExpNeeded(a->first); + levels.push_back(getAttribute(a->first) + expGot / expNeed); + } } levels.sort(); -- cgit v1.2.3-70-g09d2