aboutsummaryrefslogtreecommitdiffhomepage
path: root/CraftBukkit-Patches/0101-Unfinalize-the-isDisconnected-method-by-bukkit.patch
diff options
context:
space:
mode:
Diffstat (limited to 'CraftBukkit-Patches/0101-Unfinalize-the-isDisconnected-method-by-bukkit.patch')
-rw-r--r--CraftBukkit-Patches/0101-Unfinalize-the-isDisconnected-method-by-bukkit.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/CraftBukkit-Patches/0101-Unfinalize-the-isDisconnected-method-by-bukkit.patch b/CraftBukkit-Patches/0101-Unfinalize-the-isDisconnected-method-by-bukkit.patch
new file mode 100644
index 0000000000..3612c4c587
--- /dev/null
+++ b/CraftBukkit-Patches/0101-Unfinalize-the-isDisconnected-method-by-bukkit.patch
@@ -0,0 +1,23 @@
+From 159aa84f168b08cb2ec2a22fd594bd6f60f20e13 Mon Sep 17 00:00:00 2001
+From: hcherndon <[email protected]>
+Date: Sat, 15 Feb 2014 01:51:20 -0600
+Subject: [PATCH] Unfinalize the isDisconnected() method by bukkit.
+
+This would literally mean the world to me. You have no idea how much this method being final is fucking me over right now. (Working with NPC's and what not.)
+
+diff --git a/src/main/java/net/minecraft/server/PlayerConnection.java b/src/main/java/net/minecraft/server/PlayerConnection.java
+index c9e99e9..20fe15e 100644
+--- a/src/main/java/net/minecraft/server/PlayerConnection.java
++++ b/src/main/java/net/minecraft/server/PlayerConnection.java
+@@ -1885,7 +1885,7 @@ public class PlayerConnection implements PacketPlayInListener {
+ }
+
+ // CraftBukkit start - Add "isDisconnected" method
+- public final boolean isDisconnected() {
++ public boolean isDisconnected() {
+ return !this.player.joining && !NetworkManager.a(this.networkManager).config().isAutoRead();
+ }
+ // CraftBukkit end
+--
+1.9.1
+