Apply BASE engine improvements

This commit is contained in:
2022-08-18 14:55:01 +02:00
parent dd7a4bf304
commit b4f385db5c
4 changed files with 4 additions and 34 deletions

View File

@@ -20,7 +20,7 @@ public class AnimalAI implements AI {
this.animal = animal;
this.character = character;
this.range = range;
this.idleAI = new RandomMovementAI(animal, 4);
this.idleAI = new RandomMovementAI<>(animal, 4);
this.runawayAI = new RunawayAI<>(animal, character);
}