v0.2.3: bugfixes

This commit is contained in:
Evan Debenham 2014-12-14 14:17:56 -05:00
parent 3ee8472e19
commit 1e3bc31c6b
2 changed files with 3 additions and 2 deletions

View File

@ -136,7 +136,7 @@ public class Swarm extends Mob {
@Override @Override
public void die( Object cause ){ public void die( Object cause ){
//sets drop chance //sets drop chance
lootChance = 1f/((5 + Dungeon.limitedDrops.swarmHP.count ) * generation ); lootChance = 1f/((5 + Dungeon.limitedDrops.swarmHP.count ) * generation+1 );
super.die( cause ); super.die( cause );
} }

View File

@ -227,7 +227,8 @@ public class UnstableSpellbook extends Artifact {
} }
if (item != null) if (item != null)
GLog.w("You are unable to add this scroll to the book."); GLog.w("You are unable to add this scroll to the book.");
} } else if (item instanceof Scroll && !item.isIdentified())
GLog.w("You're not sure what type of scroll this is yet.");
} }
}; };
} }