2020-05-06 11:48:49 +02:00
|
|
|
From 0000000000000000000000000000000000000000 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
|
2020-11-18 04:45:18 +01:00
|
|
|
index 79e6b3978e1207a143ba36e194778a287b59e16b..c74c653e1417b052d498b38c30d94214812d5778 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
|
2020-06-26 08:29:44 +02:00
|
|
|
@@ -253,4 +253,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
|
2020-11-18 04:45:18 +01:00
|
|
|
index 577ad4e5e29f85cd3460c5dcc355b55df96252c2..372b47e539b9d696f5e0dfe8255b503daaa480df 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
|
2020-11-03 03:22:15 +01:00
|
|
|
@@ -158,7 +158,7 @@ public class PlayerConnection implements PacketListenerPlayIn {
|
2020-06-25 14:04:34 +02:00
|
|
|
if (this.B && !this.player.isSleeping()) {
|
2016-09-20 02:58:32 +02:00
|
|
|
if (++this.C > 80) {
|
2018-07-16 22:08:09 +02:00
|
|
|
PlayerConnection.LOGGER.warn("{} was kicked for floating too long!", this.player.getDisplayName().getString());
|
2020-06-25 14:04:34 +02:00
|
|
|
- this.disconnect(new ChatMessage("multiplayer.disconnect.flying"));
|
2016-09-20 02:58:32 +02:00
|
|
|
+ this.disconnect(com.destroystokyo.paper.PaperConfig.flyingKickPlayerMessage); // Paper - use configurable kick message
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
2020-11-03 03:22:15 +01:00
|
|
|
@@ -177,7 +177,7 @@ public class PlayerConnection implements PacketListenerPlayIn {
|
2019-04-27 08:26:04 +02:00
|
|
|
if (this.D && this.player.getRootVehicle().getRidingPassenger() == this.player) {
|
2016-09-20 02:58:32 +02:00
|
|
|
if (++this.E > 80) {
|
2018-07-16 22:08:09 +02:00
|
|
|
PlayerConnection.LOGGER.warn("{} was kicked for floating a vehicle too long!", this.player.getDisplayName().getString());
|
2020-06-25 14:04:34 +02:00
|
|
|
- this.disconnect(new ChatMessage("multiplayer.disconnect.flying"));
|
2016-09-20 02:58:32 +02:00
|
|
|
+ this.disconnect(com.destroystokyo.paper.PaperConfig.flyingKickVehicleMessage); // Paper - use configurable kick message
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|