summaryrefslogtreecommitdiffstats
path: root/nms-patches/EntityTippedArrow.patch
diff options
context:
space:
mode:
authort00thpick1 <t00thpick1dirko@gmail.com>2016-03-02 20:43:58 -0500
committermd_5 <git@md-5.net>2016-03-12 12:38:22 +1100
commit4a8818c5fd4be406c59b518b86f10f39b4e6dcdd (patch)
tree372af2cd4688e8f5142eedd7601a919e58f65b8b /nms-patches/EntityTippedArrow.patch
parent75286088fe01abc77edb96b5c240f9de6da86c7c (diff)
downloadcraftbukkit-4a8818c5fd4be406c59b518b86f10f39b4e6dcdd.tar
craftbukkit-4a8818c5fd4be406c59b518b86f10f39b4e6dcdd.tar.gz
craftbukkit-4a8818c5fd4be406c59b518b86f10f39b4e6dcdd.tar.lz
craftbukkit-4a8818c5fd4be406c59b518b86f10f39b4e6dcdd.tar.xz
craftbukkit-4a8818c5fd4be406c59b518b86f10f39b4e6dcdd.zip
SPIGOT-1638 / SPIGOT-1673: Rework Potions API
Diffstat (limited to 'nms-patches/EntityTippedArrow.patch')
-rw-r--r--nms-patches/EntityTippedArrow.patch37
1 files changed, 37 insertions, 0 deletions
diff --git a/nms-patches/EntityTippedArrow.patch b/nms-patches/EntityTippedArrow.patch
new file mode 100644
index 00000000..135274da
--- /dev/null
+++ b/nms-patches/EntityTippedArrow.patch
@@ -0,0 +1,37 @@
+--- a/net/minecraft/server/EntityTippedArrow.java
++++ b/net/minecraft/server/EntityTippedArrow.java
+@@ -10,7 +10,7 @@
+
+ private static final DataWatcherObject<Integer> f = DataWatcher.a(EntityTippedArrow.class, DataWatcherRegistry.b);
+ private PotionRegistry g;
+- private final Set<MobEffect> h;
++ public final Set<MobEffect> h; // CraftBukkit private -> public
+
+ public EntityTippedArrow(World world) {
+ super(world);
+@@ -98,6 +98,25 @@
+ }
+ }
+
++ // CraftBukkit start accessor methods
++ public void refreshEffects() {
++ this.getDataWatcher().set(EntityTippedArrow.f, Integer.valueOf(PotionUtil.a((Collection) PotionUtil.a(this.g, (Collection) this.h)))); // PAIL: rename
++ }
++
++ public String getType() {
++ return ((MinecraftKey) PotionRegistry.a.b(this.g)).toString();
++ }
++
++ public void setType(String string) {
++ this.g = PotionRegistry.a.get(new MinecraftKey(string));
++ this.datawatcher.set(EntityTippedArrow.f, Integer.valueOf(PotionUtil.a((Collection) PotionUtil.a(this.g, (Collection) this.h)))); // PAIL: rename
++ }
++
++ public boolean isTipped() {
++ return !(this.h.isEmpty() && this.g == Potions.a); // PAIL: rename
++ }
++ // CraftBukkit end
++
+ public int n() {
+ return ((Integer) this.datawatcher.get(EntityTippedArrow.f)).intValue();
+ }