diff --git a/src/world/Enemy.java b/src/world/Enemy.java index 58c1e2588a2f258f37a69f8b8f635b845e689952..286c2e5932b9545125553b3d92e5504eb0ceaace 100644 --- a/src/world/Enemy.java +++ b/src/world/Enemy.java @@ -36,7 +36,7 @@ public class Enemy extends Placeable implements ITickable { if (hp <= 0) { field.getWorld().notifyEnemyDied(this); field.stepOff(this); - } else if (rand.nextInt(20) == 0) + } else if (rand.nextInt(15) == 0) split(); }