mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-01 20:50:41 +01:00
28414e7e28
6669d6ecd2b b2740df50bb bf71dc61149 fba27a2ea80 92ee7e7f8ec b28f0d3de23 4beb4ac3918 0ddb6f3dde8 afe301fe892 b8f6402bbbe
23 lines
1 KiB
Diff
23 lines
1 KiB
Diff
From 371378e63d7d6dda60ce5226be670d8d25edc3b9 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 b9f6200..0acf91a 100644
|
|
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
@@ -2027,7 +2027,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
|
|
|