mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 04:09:54 +01:00
c9daa16dac
72d33338f08 2a70ece9ab2 [M] abcf7aa4a40 9a88a38258c [M] 8dc4297e34f
24 lines
1.0 KiB
Diff
24 lines
1.0 KiB
Diff
From 75028fdcd5c0f6eb0a6980eb8c595158601f4284 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 7e6c62a..105f38b 100644
|
|
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
@@ -2004,7 +2004,7 @@ public class PlayerConnection implements PacketListenerPlayIn, IUpdatePlayerList
|
|
}
|
|
|
|
// CraftBukkit start - Add "isDisconnected" method
|
|
- public final boolean isDisconnected() {
|
|
+ public boolean isDisconnected() {
|
|
return !this.player.joining && !NetworkManager.a(this.networkManager).config().isAutoRead();
|
|
}
|
|
}
|
|
--
|
|
2.1.0
|
|
|