v0.8.1: starflower more common, no longer has a chance to drop its seed

This commit is contained in:
Evan Debenham 2020-06-03 15:42:14 -04:00
parent 29f689e435
commit 82dbe0f7bc
2 changed files with 1 additions and 4 deletions

View File

@ -270,7 +270,7 @@ public class Generator {
Earthroot.Seed.class,
Dreamfoil.Seed.class,
Starflower.Seed.class};
SEED.defaultProbs = new float[]{ 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 1 };
SEED.defaultProbs = new float[]{ 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 2 };
SEED.probs = SEED.defaultProbs.clone();
SCROLL.classes = new Class<?>[]{

View File

@ -47,9 +47,6 @@ public class Starflower extends Plant {
}
}
if (Random.Int(5) == 0){
Dungeon.level.drop(new Seed(), pos).sprite.drop();
}
}
public static class Seed extends Plant.Seed{