@@ -1,14 +1,14 @@
|
||||
From 03bfe7469ed1b2d35847d1c3dc2bf5a9720eb2be Mon Sep 17 00:00:00 2001
|
||||
From 696041a1d9b08bc6f169cf4e743362ed05e3be5d 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 4d09fdb..2bacea0 100644
|
||||
index c049cd8..37a9cae 100644
|
||||
--- a/src/main/java/net/minecraft/server/Entity.java
|
||||
+++ b/src/main/java/net/minecraft/server/Entity.java
|
||||
@@ -217,7 +217,7 @@ public abstract class Entity {
|
||||
@@ -218,7 +218,7 @@ public abstract class Entity {
|
||||
if ((f == Float.POSITIVE_INFINITY) || (f == Float.NEGATIVE_INFINITY)) {
|
||||
if (this instanceof EntityPlayer) {
|
||||
this.world.getServer().getLogger().warning(((CraftPlayer) this.getBukkitEntity()).getName() + " was caught trying to crash the server with an invalid yaw");
|
||||
@@ -17,7 +17,7 @@ index 4d09fdb..2bacea0 100644
|
||||
}
|
||||
f = 0;
|
||||
}
|
||||
@@ -230,7 +230,7 @@ public abstract class Entity {
|
||||
@@ -231,7 +231,7 @@ public abstract class Entity {
|
||||
if ((f1 == Float.POSITIVE_INFINITY) || (f1 == Float.NEGATIVE_INFINITY)) {
|
||||
if (this instanceof EntityPlayer) {
|
||||
this.world.getServer().getLogger().warning(((CraftPlayer) this.getBukkitEntity()).getName() + " was caught trying to crash the server with an invalid pitch");
|
||||
@@ -27,7 +27,7 @@ index 4d09fdb..2bacea0 100644
|
||||
f1 = 0;
|
||||
}
|
||||
diff --git a/src/main/java/net/minecraft/server/PlayerConnection.java b/src/main/java/net/minecraft/server/PlayerConnection.java
|
||||
index b68cd97..f6bcccb 100644
|
||||
index 5dd2a0a..9649ba6 100644
|
||||
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
||||
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
||||
@@ -183,7 +183,7 @@ public class PlayerConnection implements PacketPlayInListener {
|
||||
@@ -40,7 +40,7 @@ index b68cd97..f6bcccb 100644
|
||||
}
|
||||
// CraftBukkit end
|
||||
@@ -777,7 +777,7 @@ public class PlayerConnection implements PacketPlayInListener {
|
||||
this.player.w();
|
||||
this.player.v();
|
||||
} else {
|
||||
c.warn(this.player.getName() + " tried to set an invalid carried item");
|
||||
- this.disconnect("Nope!"); // CraftBukkit
|
||||
@@ -49,5 +49,5 @@ index b68cd97..f6bcccb 100644
|
||||
}
|
||||
|
||||
--
|
||||
1.8.4.2
|
||||
1.8.5.2.msysgit.0
|
||||
|
||||
|
||||
Reference in New Issue
Block a user