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-10-27 18:11:15 +01:00
|
|
|
index 345d5069d0ebb8ad74158334fd230d0ea64b909d..af8a513c2692b71ad56abce24048b61eb78d41c4 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-10-24 19:29:35 +02:00
|
|
|
@@ -2078,7 +2078,9 @@ public class ServerGamePacketListenerImpl extends ServerCommonPacketListenerImpl
|
2024-05-05 18:41:02 +02:00
|
|
|
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);
|
2024-10-24 19:29:35 +02:00
|
|
|
@@ -2118,7 +2120,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);
|