2015-05-25 14:05:40 +02:00
|
|
|
From 2cb578d10684374acb4ecb61e03a7e49da5ea7d8 Mon Sep 17 00:00:00 2001
|
2014-07-21 22:46:54 +02:00
|
|
|
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
|
2015-02-28 12:36:22 +01:00
|
|
|
index 82accf4..d6bef0b 100644
|
2014-07-21 22:46:54 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/Entity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Entity.java
|
2015-02-28 12:36:22 +01:00
|
|
|
@@ -209,7 +209,7 @@ public abstract class Entity implements ICommandListener {
|
2014-11-28 02:17:45 +01:00
|
|
|
if (f == Float.POSITIVE_INFINITY || f == Float.NEGATIVE_INFINITY) {
|
2014-07-21 22:46:54 +02:00
|
|
|
if (this instanceof EntityPlayer) {
|
2014-11-28 02:17:45 +01:00
|
|
|
this.world.getServer().getLogger().warning(this.getName() + " was caught trying to crash the server with an invalid yaw");
|
2014-07-21 22:46:54 +02:00
|
|
|
- ((CraftPlayer) this.getBukkitEntity()).kickPlayer("Nope");
|
|
|
|
+ ((CraftPlayer) this.getBukkitEntity()).kickPlayer("Infinite yaw (Hacking?)"); //Spigot "Nope" -> Descriptive reason
|
|
|
|
}
|
|
|
|
f = 0;
|
|
|
|
}
|
2015-02-28 12:36:22 +01:00
|
|
|
@@ -222,7 +222,7 @@ public abstract class Entity implements ICommandListener {
|
2014-11-28 02:17:45 +01:00
|
|
|
if (f1 == Float.POSITIVE_INFINITY || f1 == Float.NEGATIVE_INFINITY) {
|
2014-07-21 22:46:54 +02:00
|
|
|
if (this instanceof EntityPlayer) {
|
2014-11-28 02:17:45 +01:00
|
|
|
this.world.getServer().getLogger().warning(this.getName() + " was caught trying to crash the server with an invalid pitch");
|
2014-07-21 22:46:54 +02:00
|
|
|
- ((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
|
2015-05-25 14:05:40 +02:00
|
|
|
index a357d57..ceb2419 100644
|
2014-07-21 22:46:54 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
2015-05-09 22:23:26 +02:00
|
|
|
@@ -894,7 +894,7 @@ public class PlayerConnection implements PacketListenerPlayIn, IUpdatePlayerList
|
|
|
|
this.player.resetIdleTimer();
|
2014-07-21 22:46:54 +02:00
|
|
|
} else {
|
2014-11-28 02:17:45 +01:00
|
|
|
PlayerConnection.c.warn(this.player.getName() + " tried to set an invalid carried item");
|
2014-07-21 22:46:54 +02:00
|
|
|
- this.disconnect("Nope!"); // CraftBukkit
|
|
|
|
+ this.disconnect("Invalid hotbar selection (Hacking?)"); // CraftBukkit //Spigot "Nope" -> Descriptive reason
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
--
|
2015-05-09 22:23:26 +02:00
|
|
|
2.1.4
|
2014-07-21 22:46:54 +02:00
|
|
|
|