2016-11-17 03:23:38 +01:00
|
|
|
From 4f5c683362ad3163bcbe0679da71c81c19d6ff60 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-11-17 03:23:38 +01:00
|
|
|
index 90d33af..2515557 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-11-17 03:23:38 +01:00
|
|
|
public boolean cM() {
|
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-11-17 03:23:38 +01:00
|
|
|
2.10.2
|
2016-04-15 00:49:11 +02:00
|
|
|
|