mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-03 09:19:38 +01:00
45 lines
2.4 KiB
Diff
45 lines
2.4 KiB
Diff
From 609be2ed65f9c2aed5a721299eb0250292510ea6 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
|
|
index c982151..4c55974 100644
|
|
--- a/src/main/java/net/minecraft/server/Entity.java
|
|
+++ b/src/main/java/net/minecraft/server/Entity.java
|
|
@@ -258,7 +258,7 @@ public abstract class Entity implements ICommandListener {
|
|
if (f == Float.POSITIVE_INFINITY || f == Float.NEGATIVE_INFINITY) {
|
|
if (this instanceof EntityPlayer) {
|
|
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;
|
|
}
|
|
@@ -271,7 +271,7 @@ public abstract class Entity implements ICommandListener {
|
|
if (f1 == Float.POSITIVE_INFINITY || f1 == Float.NEGATIVE_INFINITY) {
|
|
if (this instanceof EntityPlayer) {
|
|
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
|
|
index 2515ee7..2a04f15 100644
|
|
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
@@ -1113,7 +1113,7 @@ public class PlayerConnection implements PacketListenerPlayIn, ITickable {
|
|
this.player.resetIdleTimer();
|
|
} else {
|
|
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
|
|
}
|
|
}
|
|
|
|
--
|
|
2.5.0
|
|
|