geforkt von Mirrors/Paper
Hid stacktrace for socket exceptions.
Dieser Commit ist enthalten in:
Ursprung
5dfe732f18
Commit
d156fcf9c8
@ -9,6 +9,11 @@ import java.util.HashSet;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
// CraftBukkit start
|
||||
import java.net.SocketException;
|
||||
import java.net.SocketTimeoutException;
|
||||
// CraftBukkit end
|
||||
|
||||
public abstract class Packet {
|
||||
|
||||
private static Map a = new HashMap();
|
||||
@ -84,6 +89,16 @@ public abstract class Packet {
|
||||
return null;
|
||||
}
|
||||
|
||||
// CraftBukkit start
|
||||
catch (SocketTimeoutException exception) {
|
||||
System.out.println("Read timed out");
|
||||
return null;
|
||||
} catch (SocketException exception) {
|
||||
System.out.println("Connection reset");
|
||||
return null;
|
||||
}
|
||||
// CraftBukkit end
|
||||
|
||||
PacketCounter packetcounter = (PacketCounter) e.get(Integer.valueOf(i));
|
||||
|
||||
if (packetcounter == null) {
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren