summaryrefslogtreecommitdiff
path: root/src/main/java/com/keuin/kbackupfabric/ui/KBCommands.java
diff options
context:
space:
mode:
authorKeuin <[email protected]>2022-01-04 19:09:33 +0800
committerKeuin <[email protected]>2022-01-08 19:13:50 +0800
commit549cb62df5065b4e3617633d5b2b062c925a9279 (patch)
tree37f122f9a2428bfaa8b7adebeeee9b2faa3d594c /src/main/java/com/keuin/kbackupfabric/ui/KBCommands.java
parentef310895b62682b4c87487a532455738da7dbedd (diff)
Make it compile for Minecraft 1.18.
Diffstat (limited to 'src/main/java/com/keuin/kbackupfabric/ui/KBCommands.java')
-rw-r--r--src/main/java/com/keuin/kbackupfabric/ui/KBCommands.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/com/keuin/kbackupfabric/ui/KBCommands.java b/src/main/java/com/keuin/kbackupfabric/ui/KBCommands.java
index e148f24..784cd65 100644
--- a/src/main/java/com/keuin/kbackupfabric/ui/KBCommands.java
+++ b/src/main/java/com/keuin/kbackupfabric/ui/KBCommands.java
@@ -255,7 +255,7 @@ public final class KBCommands {
public static int delete(CommandContext<ServerCommandSource> context) {
String backupFileName = parseBackupFileName(context, StringArgumentType.getString(context, "backupName"));
- MinecraftServer server = context.getSource().getMinecraftServer();
+ MinecraftServer server = context.getSource().getServer();
if (backupFileName == null)
return list(context); // Show the list and return
@@ -286,7 +286,7 @@ public final class KBCommands {
public static int restore(CommandContext<ServerCommandSource> context) {
try {
//KBMain.restore("name")
- MinecraftServer server = context.getSource().getMinecraftServer();
+ MinecraftServer server = context.getSource().getServer();
String backupFileName = parseBackupFileName(context, StringArgumentType.getString(context, "backupName"));
// backupFileName = parseBackupFileName(context, backupFileName);
@@ -344,7 +344,7 @@ public final class KBCommands {
PrintUtil.info("Start backup...");
// configure backup method
- MinecraftServer server = context.getSource().getMinecraftServer();
+ MinecraftServer server = context.getSource().getServer();
ConfiguredBackupMethod method = !incremental ? new ConfiguredPrimitiveBackupMethod(
PrimitiveBackupFileNameEncoder.INSTANCE.encode(customBackupName, LocalDateTime.now()),
getLevelPath(server),