Fixed an armour calculation bug

This commit is contained in:
Seefo
2014-04-05 14:37:42 -04:00
parent 586c652ac6
commit 890d395e3a
3 changed files with 2 additions and 3 deletions
@@ -611,7 +611,7 @@ public class CreatureObject extends TangibleObject implements IPersistent {
public void removeSkillMod(SkillMod mod) {
if (mod != null) {
skillMods.remove(mod);
skillMods.remove(mod.getName());
}
}