2022-12-26 05:22:08 +01:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: NonSwag <mrminecraft00@gmail.com>
|
|
|
|
Date: Thu, 8 Dec 2022 20:25:05 +0100
|
|
|
|
Subject: [PATCH] Add missing SpigotConfig logCommands check
|
|
|
|
|
2024-05-05 18:41:02 +02:00
|
|
|
Co-authored-by: david <mrminecraft00@gmail.com>
|
2022-12-26 05:22:08 +01:00
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java b/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java
|
2024-05-16 02:06:59 +02:00
|
|
|
index cb9b46ed5ff2f9aa0d322be75659c0046f38c663..b35365fce1233214a0dd7f1cf86d940f47c860d3 100644
|
2022-12-26 05:22:08 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java
|
2024-05-05 18:41:02 +02:00
|
|
|
@@ -2041,7 +2041,9 @@ public class ServerGamePacketListenerImpl extends ServerCommonPacketListenerImpl
|
|
|
|
private void performUnsignedChatCommand(String command) {
|
|
|
|
// CraftBukkit start
|
|
|
|
String command1 = "/" + command;
|
|
|
|
+ if (org.spigotmc.SpigotConfig.logCommands) { // Paper - Add missing SpigotConfig logCommands check
|
|
|
|
ServerGamePacketListenerImpl.LOGGER.info(this.player.getScoreboardName() + " issued server command: " + command1);
|
|
|
|
+ }
|
|
|
|
|
|
|
|
PlayerCommandPreprocessEvent event = new PlayerCommandPreprocessEvent(this.getCraftPlayer(), command1, new LazyPlayerSet(this.server));
|
|
|
|
this.cserver.getPluginManager().callEvent(event);
|
|
|
|
@@ -2081,7 +2083,9 @@ public class ServerGamePacketListenerImpl extends ServerCommonPacketListenerImpl
|
2024-04-25 00:36:49 +02:00
|
|
|
private void performSignedChatCommand(ServerboundChatCommandSignedPacket packet, LastSeenMessages lastSeenMessages) {
|
2022-12-26 05:22:08 +01:00
|
|
|
// CraftBukkit start
|
|
|
|
String command = "/" + packet.command();
|
2024-01-16 12:41:40 +01:00
|
|
|
+ if (org.spigotmc.SpigotConfig.logCommands) { // Paper - Add missing SpigotConfig logCommands check
|
2022-12-26 05:22:08 +01:00
|
|
|
ServerGamePacketListenerImpl.LOGGER.info(this.player.getScoreboardName() + " issued server command: " + command);
|
2024-01-16 12:41:40 +01:00
|
|
|
+ } // Paper - Add missing SpigotConfig logCommands check
|
2022-12-26 05:22:08 +01:00
|
|
|
|
2023-10-27 01:34:58 +02:00
|
|
|
PlayerCommandPreprocessEvent event = new PlayerCommandPreprocessEvent(this.getCraftPlayer(), command, new LazyPlayerSet(this.server));
|
2022-12-26 05:22:08 +01:00
|
|
|
this.cserver.getPluginManager().callEvent(event);
|