2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/EntitySheep.java
|
|
|
|
+++ b/net/minecraft/server/EntitySheep.java
|
2016-02-29 22:32:46 +01:00
|
|
|
@@ -4,6 +4,12 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
import java.util.Map;
|
|
|
|
import java.util.Random;
|
|
|
|
|
|
|
|
+// CraftBukkit start
|
|
|
|
+import org.bukkit.event.entity.SheepRegrowWoolEvent;
|
|
|
|
+import org.bukkit.event.player.PlayerShearEntityEvent;
|
2015-02-26 23:41:06 +01:00
|
|
|
+import org.bukkit.inventory.InventoryView;
|
2014-11-25 22:32:16 +01:00
|
|
|
+// CraftBukkit end
|
|
|
|
+
|
|
|
|
public class EntitySheep extends EntityAnimal {
|
|
|
|
|
2016-02-29 22:32:46 +01:00
|
|
|
private static final DataWatcherObject<Byte> bv = DataWatcher.a(EntitySheep.class, DataWatcherRegistry.a);
|
|
|
|
@@ -11,6 +17,13 @@
|
2015-02-26 23:41:06 +01:00
|
|
|
public boolean a(EntityHuman entityhuman) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ // CraftBukkit start
|
|
|
|
+ @Override
|
|
|
|
+ public InventoryView getBukkitView() {
|
|
|
|
+ return null; // TODO: O.O
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
|
|
|
}, 2, 1);
|
2016-02-29 22:32:46 +01:00
|
|
|
private static final Map<EnumColor, float[]> bx = Maps.newEnumMap(EnumColor.class);
|
|
|
|
private int bz;
|
|
|
|
@@ -25,6 +38,7 @@
|
|
|
|
this.setSize(0.9F, 1.3F);
|
|
|
|
this.container.setItem(0, new ItemStack(Items.DYE));
|
|
|
|
this.container.setItem(1, new ItemStack(Items.DYE));
|
|
|
|
+ this.container.resultInventory = new InventoryCraftResult(); // CraftBukkit - add result slot for event
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
|
2016-02-29 22:32:46 +01:00
|
|
|
protected void r() {
|
|
|
|
@@ -123,6 +137,15 @@
|
|
|
|
public boolean a(EntityHuman entityhuman, EnumHand enumhand, ItemStack itemstack) {
|
2014-11-25 22:32:16 +01:00
|
|
|
if (itemstack != null && itemstack.getItem() == Items.SHEARS && !this.isSheared() && !this.isBaby()) {
|
2015-02-26 23:41:06 +01:00
|
|
|
if (!this.world.isClientSide) {
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit start
|
|
|
|
+ PlayerShearEntityEvent event = new PlayerShearEntityEvent((org.bukkit.entity.Player) entityhuman.getBukkitEntity(), this.getBukkitEntity());
|
|
|
|
+ this.world.getServer().getPluginManager().callEvent(event);
|
|
|
|
+
|
|
|
|
+ if (event.isCancelled()) {
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
2015-02-26 23:41:06 +01:00
|
|
|
+
|
2014-11-25 22:32:16 +01:00
|
|
|
this.setSheared(true);
|
|
|
|
int i = 1 + this.random.nextInt(3);
|
|
|
|
|
2016-02-29 22:32:46 +01:00
|
|
|
@@ -210,6 +233,12 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
|
2016-02-29 22:32:46 +01:00
|
|
|
public void B() {
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit start
|
|
|
|
+ SheepRegrowWoolEvent event = new SheepRegrowWoolEvent((org.bukkit.entity.Sheep) this.getBukkitEntity());
|
|
|
|
+ this.world.getServer().getPluginManager().callEvent(event);
|
|
|
|
+
|
2016-02-29 22:32:46 +01:00
|
|
|
+ if (event.isCancelled()) return;
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit end
|
2016-02-29 22:32:46 +01:00
|
|
|
this.setSheared(false);
|
2014-11-25 22:32:16 +01:00
|
|
|
if (this.isBaby()) {
|
|
|
|
this.setAge(60);
|