mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-06 10:44:39 +01:00
11 lines
554 B
Diff
11 lines
554 B
Diff
--- a/net/minecraft/server/commands/DeOpCommands.java
|
|
+++ b/net/minecraft/server/commands/DeOpCommands.java
|
|
@@ -35,7 +_,7 @@
|
|
if (playerList.isOp(gameProfile)) {
|
|
playerList.deop(gameProfile);
|
|
i++;
|
|
- source.sendSuccess(() -> Component.translatable("commands.deop.success", players.iterator().next().getName()), true);
|
|
+ source.sendSuccess(() -> Component.translatable("commands.deop.success", gameProfile.getName()), true); // Paper - fixes MC-253721
|
|
}
|
|
}
|
|
|