Skip to content

Commit

Permalink
Removed MobDeathTask.java use from NPCFactory.java as it is not longe…
Browse files Browse the repository at this point in the history
…r used or maintained.
  • Loading branch information
max9753 committed Sep 10, 2023
1 parent 7b27e04 commit e303bd5
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,7 @@ public static Entity createBaseNPC(Entity target) {
AITaskComponent aiComponent =
new AITaskComponent()
.addTask(new WanderTask(new Vector2(2f, 2f), 2f))
.addTask(new MobAttackTask(2, 40))
.addTask(new MobDeathTask(2));
.addTask(new MobAttackTask(2, 40));
Entity npc =
new Entity()
.addComponent(new PhysicsComponent())
Expand Down

0 comments on commit e303bd5

Please sign in to comment.