v0.2.3: fixed a bug where artifacts that cannot be cursed would drop unidentified.

This commit is contained in:
Evan Debenham 2015-01-03 17:25:38 -05:00
parent f4d08fa9ef
commit 3c615788cc
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ public class DM300 extends Mob {
EXP = 30;
defenseSkill = 18;
loot = new CapeOfThorns();
loot = new CapeOfThorns().identify();
lootChance = 0.333f;
}

View File

@ -48,7 +48,7 @@ public class Thief extends Mob {
EXP = 5;
maxLvl = 10;
loot = new MasterThievesArmband();
loot = new MasterThievesArmband().identify();
lootChance = 0.01f;
FLEEING = new Fleeing();