aboutsummaryrefslogtreecommitdiff
path: root/src/crcombat.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/crcombat.cc')
-rw-r--r--src/crcombat.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crcombat.cc b/src/crcombat.cc
index c50f028..98d689a 100644
--- a/src/crcombat.cc
+++ b/src/crcombat.cc
@@ -919,7 +919,7 @@ void TCombat::DistributeExperiencePoints(uint32 Exp){
int MasterLevel = Master->Skills[SKILL_LEVEL]->Get();
int AttackerLevel = Attacker->Skills[SKILL_LEVEL]->Get();
int MaxLevel = (MasterLevel * 11) / 10;
- if(AttackerLevel <= MaxLevel){
+ if(AttackerLevel >= MaxLevel){
continue;
}