Paper 1.9.4 Update
This commit is contained in:
@@ -28,10 +28,10 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||
@@ -0,0 +0,0 @@ public class EntitySquid extends EntityWaterAnimal {
|
||||
}
|
||||
|
||||
public boolean cF() {
|
||||
- return this.locY > 45.0D && this.locY < (double) this.world.K() && super.cF();
|
||||
public boolean cG() {
|
||||
- return this.locY > 45.0D && this.locY < (double) this.world.K() && super.cG();
|
||||
+ // Paper - Configurable squid spawn height range
|
||||
+ return this.locY > world.paperConfig.squidMinSpawnHeight && this.locY < world.paperConfig.squidMaxSpawnHeight && super.cF();
|
||||
+ return this.locY > world.paperConfig.squidMinSpawnHeight && this.locY < world.paperConfig.squidMaxSpawnHeight && super.cG();
|
||||
}
|
||||
|
||||
public void b(float f, float f1, float f2) {
|
||||
|
||||
Reference in New Issue
Block a user