Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-16 04:50:05 +01:00
b360cf686f
eb39b4729ce 59b08be5833 a723278f74a
24 Zeilen
1.0 KiB
Diff
24 Zeilen
1.0 KiB
Diff
From 6a44270f052392f647d527139895ceb7df47ece8 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 9cfbead..2e1b08e 100644
|
|
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
@@ -2039,7 +2039,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
|
|
|