Skip to content

Commit

Permalink
Merge pull request #156 from CuteLittleSky/develop
Browse files Browse the repository at this point in the history
Avoid Guardian and Elder Guardian from taking acid damage
  • Loading branch information
tastybento authored Jun 19, 2024
2 parents 63fde7f + 429db88 commit 93bbd25
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/world/bentobox/acidisland/world/AcidTask.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ public class AcidTask {
i.add(EntityType.POLAR_BEAR);
i.add(EntityType.TURTLE);
i.add(EntityType.DROWNED);
i.add(EntityType.GUARDIAN);
i.add(EntityType.ELDER_GUARDIAN);
Enums.getIfPresent(EntityType.class, "AXOLOTL").toJavaUtil().ifPresent(i::add);
IMMUNE = Collections.unmodifiableList(i);
}
Expand Down

0 comments on commit 93bbd25

Please sign in to comment.