2016-09-11 04:42:47 +02:00
|
|
|
From d717b8e7a3dacbccd8efc83a643e200bd766cbbe Mon Sep 17 00:00:00 2001
|
2016-04-15 00:49:11 +02:00
|
|
|
From: Zach Brown <zach.brown@destroystokyo.com>
|
|
|
|
Date: Thu, 14 Apr 2016 17:48:56 -0500
|
|
|
|
Subject: [PATCH] Water mobs should only spawn in the water
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityWaterAnimal.java b/src/main/java/net/minecraft/server/EntityWaterAnimal.java
|
2016-06-09 05:57:14 +02:00
|
|
|
index 76394a3..e61f9a2 100644
|
2016-04-15 00:49:11 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityWaterAnimal.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityWaterAnimal.java
|
|
|
|
@@ -11,7 +11,15 @@ public abstract class EntityWaterAnimal extends EntityInsentient implements IAni
|
|
|
|
}
|
|
|
|
|
2016-06-09 05:57:14 +02:00
|
|
|
public boolean cK() {
|
2016-04-15 00:49:11 +02:00
|
|
|
- return true;
|
|
|
|
+ // Paper start - Don't let water mobs spawn in non-water blocks
|
|
|
|
+ // Based around EntityAnimal's implementation
|
|
|
|
+ int i = MathHelper.floor(this.locX);
|
|
|
|
+ int j = MathHelper.floor(this.getBoundingBox().b); // minY of bounding box
|
|
|
|
+ int k = MathHelper.floor(this.locZ);
|
2016-04-15 22:49:39 +02:00
|
|
|
+ Block block = this.world.getType(new BlockPosition(i, j, k)).getBlock();
|
2016-04-15 00:49:11 +02:00
|
|
|
+
|
2016-04-15 22:49:39 +02:00
|
|
|
+ return block == Blocks.WATER || block == Blocks.FLOWING_WATER;
|
2016-04-15 00:49:11 +02:00
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean canSpawn() {
|
|
|
|
--
|
2016-09-11 04:42:47 +02:00
|
|
|
2.10.0.windows.1
|
2016-04-15 00:49:11 +02:00
|
|
|
|