v0.4.0: weapon gen bugfix

This commit is contained in:
Evan Debenham 2016-06-09 15:53:16 -04:00 committed by Evan Debenham
parent 4a2b421fd0
commit 39512b167e

View File

@ -126,14 +126,4 @@ public class MeleeWeapon extends Weapon {
return price;
}
@Override
public Item random() {
super.random();
if (Random.Int( 10 + level() ) == 0) {
enchant();
}
return this;
}
}