2016-04-02 04:08:40 +02:00
|
|
|
From 2de7f35a9929145e900262fcde536f0de84e34b0 Mon Sep 17 00:00:00 2001
|
2016-03-18 19:20:11 +01:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Fri, 18 Mar 2016 14:19:19 -0400
|
|
|
|
Subject: [PATCH] Undead horse leashing
|
|
|
|
|
|
|
|
default false to match vanilla, but option to allow undead horse types to be leashed.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2016-03-31 05:55:46 +02:00
|
|
|
index 9e91991..03dd637 100644
|
2016-03-18 19:20:11 +01:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2016-03-31 05:55:46 +02:00
|
|
|
@@ -277,4 +277,9 @@ public class PaperWorldConfig {
|
2016-03-18 19:20:11 +01:00
|
|
|
private void useHopperCheck() {
|
|
|
|
useHopperCheck = getBoolean("use-hopper-check", false);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public boolean allowLeashingUndeadHorse = false;
|
|
|
|
+ private void allowLeashingUndeadHorse() {
|
|
|
|
+ allowLeashingUndeadHorse = getBoolean("allow-leashing-undead-horse", false);
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityHorse.java b/src/main/java/net/minecraft/server/EntityHorse.java
|
2016-03-31 02:50:23 +02:00
|
|
|
index a81bf3b..8367458 100644
|
2016-03-18 19:20:11 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityHorse.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityHorse.java
|
|
|
|
@@ -167,6 +167,7 @@ public class EntityHorse extends EntityAnimal implements IInventoryListener, IJu
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean a(EntityHuman entityhuman) {
|
|
|
|
+ if (world.paperConfig.allowLeashingUndeadHorse) { return super.a(entityhuman); } // Paper
|
|
|
|
return !this.getType().h() && super.a(entityhuman);
|
|
|
|
}
|
|
|
|
|
|
|
|
--
|
2016-04-02 04:08:40 +02:00
|
|
|
2.8.0
|
2016-03-18 19:20:11 +01:00
|
|
|
|