Skip to content

Commit

Permalink
Lowered evo requirement for insect attacks
Browse files Browse the repository at this point in the history
It turned out spawning bugs with a small window of truce was a VERY bad idea.
  • Loading branch information
Slotterleet authored Apr 8, 2024
1 parent 876912a commit 39dd37b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fos/ai/BugAI.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public void updateMovement() {
Tile tile = unit.tileOn();
Tile targetTile = tile;

if (bug.invading() && evo() >= 0.1f) {
if (bug.invading() && evo() >= 0.05f) {
target = findTarget(unit.x, unit.y, 1600f, false, true);

if (target != null) {
Expand Down

0 comments on commit 39dd37b

Please sign in to comment.