Paper/CraftBukkit-Patches/0083-Descriptive-kick-reasons-instead-of-Nope.patch

45 lines
2.4 KiB
Diff
Raw Normal View History

2016-03-07 08:52:16 +00:00
From 1d2e985e16567d606ce01a7519a3294dc039a4a2 Mon Sep 17 00:00:00 2001
From: drXor <mcyoungsota@gmail.com>
Date: Sat, 15 Mar 2014 01:30:05 -0400
Subject: [PATCH] Descriptive kick reasons instead of Nope!
diff --git a/src/main/java/net/minecraft/server/Entity.java b/src/main/java/net/minecraft/server/Entity.java
2016-03-07 08:52:16 +00:00
index f6bec63..6d3afd8 100644
--- a/src/main/java/net/minecraft/server/Entity.java
+++ b/src/main/java/net/minecraft/server/Entity.java
2016-02-29 21:33:06 +00:00
@@ -258,7 +258,7 @@ public abstract class Entity implements ICommandListener {
2014-11-28 01:17:45 +00:00
if (f == Float.POSITIVE_INFINITY || f == Float.NEGATIVE_INFINITY) {
if (this instanceof EntityPlayer) {
2014-11-28 01:17:45 +00:00
this.world.getServer().getLogger().warning(this.getName() + " was caught trying to crash the server with an invalid yaw");
- ((CraftPlayer) this.getBukkitEntity()).kickPlayer("Nope");
+ ((CraftPlayer) this.getBukkitEntity()).kickPlayer("Infinite yaw (Hacking?)"); //Spigot "Nope" -> Descriptive reason
}
f = 0;
}
2016-02-29 21:33:06 +00:00
@@ -271,7 +271,7 @@ public abstract class Entity implements ICommandListener {
2014-11-28 01:17:45 +00:00
if (f1 == Float.POSITIVE_INFINITY || f1 == Float.NEGATIVE_INFINITY) {
if (this instanceof EntityPlayer) {
2014-11-28 01:17:45 +00:00
this.world.getServer().getLogger().warning(this.getName() + " was caught trying to crash the server with an invalid pitch");
- ((CraftPlayer) this.getBukkitEntity()).kickPlayer("Nope");
+ ((CraftPlayer) this.getBukkitEntity()).kickPlayer("Infinite pitch (Hacking?)"); //Spigot "Nope" -> Descriptive reason
}
f1 = 0;
}
diff --git a/src/main/java/net/minecraft/server/PlayerConnection.java b/src/main/java/net/minecraft/server/PlayerConnection.java
2016-03-07 08:52:16 +00:00
index 000b6b0..d2b3816 100644
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
2016-03-07 08:52:16 +00:00
@@ -1105,7 +1105,7 @@ public class PlayerConnection implements PacketListenerPlayIn, ITickable {
2015-05-09 20:23:26 +00:00
this.player.resetIdleTimer();
} else {
2016-02-29 21:33:06 +00:00
PlayerConnection.LOGGER.warn(this.player.getName() + " tried to set an invalid carried item");
- this.disconnect("Nope!"); // CraftBukkit
+ this.disconnect("Invalid hotbar selection (Hacking?)"); // CraftBukkit //Spigot "Nope" -> Descriptive reason
}
}
--
2016-02-29 21:33:06 +00:00
2.5.0