other things i missed

This commit is contained in:
granny
2025-09-21 22:18:56 -07:00
parent d1ac97818e
commit 585e6ca366
2 changed files with 11 additions and 9 deletions

View File

@@ -18,6 +18,15 @@
}
public void setStayOutOfHiveCountdown(int stayOutOfHiveCountdown) {
@@ -391,7 +_,7 @@
@Override
protected void customServerAiStep(ServerLevel level) {
boolean hasStung = this.hasStung();
- if (this.isInWater()) {
+ if (this.level().purpurConfig.beeCanInstantlyStartDrowning && this.isInWater()) { // Purpur - bee can instantly start drowning in water option
this.underWaterTicks++;
} else {
this.underWaterTicks = 0;
@@ -401,6 +_,7 @@
this.hurtServer(level, this.damageSources().drown(), 1.0F);
}