2019-01-01 04:15:55 +01:00
|
|
|
From 8f02577907e387752249570e682b65e4e7a8f146 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
|
2019-01-01 04:15:55 +01:00
|
|
|
index f5bd2245a..51b0dd972 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
|
2018-10-19 02:44:59 +02:00
|
|
|
@@ -262,4 +262,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
|
2019-01-01 04:15:55 +01:00
|
|
|
index c31f84a84..f2686f7cb 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
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -144,7 +144,7 @@ public class PlayerConnection implements PacketListenerPlayIn, ITickable {
|
2018-10-02 07:54:45 +02:00
|
|
|
if (this.B) {
|
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());
|
2018-10-02 07:54:45 +02:00
|
|
|
- this.disconnect(new ChatMessage("multiplayer.disconnect.flying", new Object[0]));
|
2016-09-20 02:58:32 +02:00
|
|
|
+ this.disconnect(com.destroystokyo.paper.PaperConfig.flyingKickPlayerMessage); // Paper - use configurable kick message
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -163,7 +163,7 @@ public class PlayerConnection implements PacketListenerPlayIn, ITickable {
|
2018-07-16 22:08:09 +02:00
|
|
|
if (this.D && this.player.getRootVehicle().bO() == 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());
|
2017-05-31 10:04:52 +02:00
|
|
|
- this.disconnect(new ChatMessage("multiplayer.disconnect.flying", new Object[0]));
|
2016-09-20 02:58:32 +02:00
|
|
|
+ this.disconnect(com.destroystokyo.paper.PaperConfig.flyingKickVehicleMessage); // Paper - use configurable kick message
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
--
|
2019-01-01 04:15:55 +01:00
|
|
|
2.20.1
|
2016-09-20 02:58:32 +02:00
|
|
|
|