Skip to content

Commit e9565a6

Browse files
committed
fix(ListAdvance): command print twice
1 parent 4ada666 commit e9565a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/github/optijava/opt_carpet_addition/commands/ListAdvanceCommand.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ private static int listAdvance(CommandContext<ServerCommandSource> context) {
3030
sb.append(s.getName().getString()).append(" ").append(s.interactionManager.getGameMode().getName()).append(" ").append(s.pingMilliseconds).append("ms ").append(s.getIp()).append(" ").append(s.getGameProfile().getId().toString()).append("\n");
3131
//#endif
3232
}
33-
OptCarpetAddition.LOGGER.info(sb.toString());
33+
// OptCarpetAddition.LOGGER.info(sb.toString());
3434
Messenger.m(context.getSource(), sb.toString());
3535
} catch (Exception e) {
3636
context.getSource().sendError(Messenger.c("Unexpected exception occurred when command list advance executed."));

0 commit comments

Comments
 (0)