add option for sponges to absorb water from mud

This commit is contained in:
granny
2023-08-13 00:56:16 -07:00
parent f109b7d50d
commit 76146eca49
59 changed files with 280 additions and 266 deletions

View File

@@ -17,10 +17,10 @@ index ac4ca4de2be18a08268b24dfe259cfd136b1a4da..e837500019157129007841c847d807eb
++this.timeSinceSting;
if (this.timeSinceSting % 5 == 0 && this.random.nextInt(Mth.clamp(1200 - this.timeSinceSting, 1, 1200)) == 0) {
diff --git a/src/main/java/org/purpurmc/purpur/PurpurWorldConfig.java b/src/main/java/org/purpurmc/purpur/PurpurWorldConfig.java
index 9c843a9e1448595f01a1240e58289c757fd28122..afccca6f626758f3c2e80081b4c7282c253ee039 100644
index 13b8de2398f4c105e8e010289b3d492f5009228f..40e4ca084fe829ce422052986f43f3e4ce551da0 100644
--- a/src/main/java/org/purpurmc/purpur/PurpurWorldConfig.java
+++ b/src/main/java/org/purpurmc/purpur/PurpurWorldConfig.java
@@ -1085,6 +1085,7 @@ public class PurpurWorldConfig {
@@ -1087,6 +1087,7 @@ public class PurpurWorldConfig {
public boolean beeCanWorkAtNight = false;
public boolean beeCanWorkInRain = false;
public boolean beeAlwaysDropExp = false;
@@ -28,7 +28,7 @@ index 9c843a9e1448595f01a1240e58289c757fd28122..afccca6f626758f3c2e80081b4c7282c
private void beeSettings() {
beeRidable = getBoolean("mobs.bee.ridable", beeRidable);
beeRidableInWater = getBoolean("mobs.bee.ridable-in-water", beeRidableInWater);
@@ -1101,6 +1102,7 @@ public class PurpurWorldConfig {
@@ -1103,6 +1104,7 @@ public class PurpurWorldConfig {
beeCanWorkAtNight = getBoolean("mobs.bee.can-work-at-night", beeCanWorkAtNight);
beeCanWorkInRain = getBoolean("mobs.bee.can-work-in-rain", beeCanWorkInRain);
beeAlwaysDropExp = getBoolean("mobs.bee.always-drop-exp", beeAlwaysDropExp);