2017-05-14 20:05:01 +02:00
|
|
|
From 6e44ed8bac401fbec4992cd29181c000a1473c51 Mon Sep 17 00:00:00 2001
|
2016-09-20 02:58:32 +02:00
|
|
|
From: kashike <kashike@vq.lc>
|
|
|
|
Date: Tue, 20 Sep 2016 00:58:01 +0000
|
|
|
|
Subject: [PATCH] Configurable flying kick messages
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperConfig.java b/src/main/java/com/destroystokyo/paper/PaperConfig.java
|
2017-05-05 01:08:52 +02:00
|
|
|
index d765607c0..5b4d715a4 100644
|
2016-09-20 02:58:32 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperConfig.java
|
2017-05-05 01:08:52 +02:00
|
|
|
@@ -244,4 +244,11 @@ public class PaperConfig {
|
2016-09-20 02:58:32 +02:00
|
|
|
}
|
|
|
|
packetInSpamThreshold = getInt("settings.incoming-packet-spam-threshold", 300);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public static String flyingKickPlayerMessage = "Flying is not enabled on this server";
|
|
|
|
+ public static String flyingKickVehicleMessage = "Flying is not enabled on this server";
|
|
|
|
+ private static void flyingKickMessages() {
|
|
|
|
+ flyingKickPlayerMessage = getString("messages.kick.flying-player", flyingKickPlayerMessage);
|
|
|
|
+ flyingKickVehicleMessage = getString("messages.kick.flying-vehicle", flyingKickVehicleMessage);
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/PlayerConnection.java b/src/main/java/net/minecraft/server/PlayerConnection.java
|
2017-05-14 20:05:01 +02:00
|
|
|
index 7b8e7f343..d2742df61 100644
|
2016-09-20 02:58:32 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
2017-04-20 15:22:08 +02:00
|
|
|
@@ -143,7 +143,7 @@ public class PlayerConnection implements PacketListenerPlayIn, ITickable {
|
2016-09-20 02:58:32 +02:00
|
|
|
if (this.B) {
|
|
|
|
if (++this.C > 80) {
|
2017-05-14 20:05:01 +02:00
|
|
|
PlayerConnection.LOGGER.warn("{} was kicked for floating too long!", this.player.getName());
|
2016-09-20 02:58:32 +02:00
|
|
|
- this.disconnect("Flying is not enabled on this server");
|
|
|
|
+ this.disconnect(com.destroystokyo.paper.PaperConfig.flyingKickPlayerMessage); // Paper - use configurable kick message
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
2017-04-20 15:22:08 +02:00
|
|
|
@@ -162,7 +162,7 @@ public class PlayerConnection implements PacketListenerPlayIn, ITickable {
|
2017-05-14 20:05:01 +02:00
|
|
|
if (this.D && this.player.getVehicle().bC() == this.player) {
|
2016-09-20 02:58:32 +02:00
|
|
|
if (++this.E > 80) {
|
2017-05-14 20:05:01 +02:00
|
|
|
PlayerConnection.LOGGER.warn("{} was kicked for floating a vehicle too long!", this.player.getName());
|
2016-09-20 02:58:32 +02:00
|
|
|
- this.disconnect("Flying is not enabled on this server");
|
|
|
|
+ this.disconnect(com.destroystokyo.paper.PaperConfig.flyingKickVehicleMessage); // Paper - use configurable kick message
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
--
|
2017-05-14 20:05:01 +02:00
|
|
|
2.13.0
|
2016-09-20 02:58:32 +02:00
|
|
|
|