mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-06 10:49:40 +01:00
24 lines
1016 B
Diff
24 lines
1016 B
Diff
From 1822e8d5553dc378cc35bba0982a8489935e8730 Mon Sep 17 00:00:00 2001
|
|
From: hcherndon <hcherndon@gmail.com>
|
|
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 25cc14b..f84df92 100644
|
|
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
@@ -1858,7 +1858,7 @@ public class PlayerConnection implements PacketPlayInListener {
|
|
}
|
|
|
|
// CraftBukkit start - Add "isDisconnected" method
|
|
- public final boolean isDisconnected() {
|
|
+ public boolean isDisconnected() {
|
|
return !NetworkManager.a(this.networkManager).config().isAutoRead();
|
|
}
|
|
// CraftBukkit end
|
|
--
|
|
1.8.3.2
|
|
|