Skip to content

Commit

Permalink
disabled a debug print that was accidentally left on
Browse files Browse the repository at this point in the history
  • Loading branch information
youbetterdont committed Mar 1, 2020
1 parent 3897ccd commit 5bd2540
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BH/Modules/Item/ItemDisplay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1174,7 +1174,7 @@ bool ChargedCondition::EvaluateInternalFromPacket(ItemInfo *info, Condition *arg
for (vector<ItemProperty>::iterator prop = info->properties.begin(); prop < info->properties.end(); prop++) {
if (prop->stat == STAT_CHARGED && prop->skill == skill) {
num = (prop->level > num) ? prop->level : num; // use the highest level charges for the comparison
PrintText(1, "Found charged skill. skill=%u level=%u", prop->skill, prop->level);
//PrintText(1, "Found charged skill. skill=%u level=%u", prop->skill, prop->level);
}
}
return IntegerCompare(num, operation, targetLevel);
Expand Down

0 comments on commit 5bd2540

Please sign in to comment.