Skip to content

Commit

Permalink
whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke100000 committed May 28, 2023
1 parent bf98402 commit a9fd1e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ public static Brain<VillagerEntityMCA> initializeTasks(VillagerEntityMCA village
public static ImmutableList<Pair<Integer, ? extends Task<? super VillagerEntityMCA>>> getImportantCorePackage(float speedModifier) {
return ImmutableList.of(
Pair.of(0, new StayAboveWaterTask(0.8F)),
Config.getServerConfig().useSmarterDoorAI ? Pair.of(0, new SmarterOpenDoorsTask()) : Pair.of(0, new OpenDoorsTask()),
Config.getServerConfig().useSmarterDoorAI ? Pair.of(0, new SmarterOpenDoorsTask()) : Pair.of(0, OpenDoorsTask.create()),
Pair.of(0, new LookAroundTask(45, 90)),
Pair.of(0, WakeUpTask.create()),
Pair.of(0, new DeliverMessageTask()),
Expand Down

0 comments on commit a9fd1e2

Please sign in to comment.