minecraft-src/net/minecraft/server/commands/SaveOnCommand.java
2025-07-04 01:41:11 +03:00

33 lines
1.2 KiB
Java

package net.minecraft.server.commands;
import com.mojang.brigadier.CommandDispatcher;
import com.mojang.brigadier.exceptions.SimpleCommandExceptionType;
import net.minecraft.commands.CommandSourceStack;
import net.minecraft.commands.Commands;
import net.minecraft.network.chat.Component;
import net.minecraft.server.level.ServerLevel;
public class SaveOnCommand {
private static final SimpleCommandExceptionType ERROR_ALREADY_ON = new SimpleCommandExceptionType(Component.translatable("commands.save.alreadyOn"));
public static void register(CommandDispatcher<CommandSourceStack> dispatcher) {
dispatcher.register(Commands.literal("save-on").requires(commandSourceStack -> commandSourceStack.hasPermission(4)).executes(commandContext -> {
CommandSourceStack commandSourceStack = commandContext.getSource();
boolean bl = false;
for (ServerLevel serverLevel : commandSourceStack.getServer().getAllLevels()) {
if (serverLevel != null && serverLevel.noSave) {
serverLevel.noSave = false;
bl = true;
}
}
if (!bl) {
throw ERROR_ALREADY_ON.create();
} else {
commandSourceStack.sendSuccess(() -> Component.translatable("commands.save.enabled"), true);
return 1;
}
}));
}
}