mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-06 10:49:40 +01:00
54 lines
2.9 KiB
Diff
54 lines
2.9 KiB
Diff
From 4c5b325c337e4824aadd558eb5dc9321481fb3d6 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 82accf4..d6bef0b 100644
|
|
--- a/src/main/java/net/minecraft/server/Entity.java
|
|
+++ b/src/main/java/net/minecraft/server/Entity.java
|
|
@@ -209,7 +209,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;
|
|
}
|
|
@@ -222,7 +222,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 d8f9299..8e8f1cf 100644
|
|
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
@@ -194,7 +194,7 @@ public class PlayerConnection implements PacketListenerPlayIn, IUpdatePlayerList
|
|
|| !NumberConversions.isFinite(packetplayinflying.yaw)
|
|
|| !NumberConversions.isFinite(packetplayinflying.pitch)) {
|
|
c.warn(player.getName() + " was caught trying to crash the server with an invalid position.");
|
|
- getPlayer().kickPlayer("Nope!");
|
|
+ getPlayer().kickPlayer("NaN in position (Hacking?)"); //Spigot "Nope" -> Descriptive reason
|
|
return;
|
|
}
|
|
// CraftBukkit end
|
|
@@ -892,7 +892,7 @@ public class PlayerConnection implements PacketListenerPlayIn, IUpdatePlayerList
|
|
this.player.z();
|
|
} else {
|
|
PlayerConnection.c.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.1.0
|
|
|