summaryrefslogtreecommitdiff
path: root/src/main/java/com/keuin/kbackupfabric/ui
diff options
context:
space:
mode:
authorKeuin <[email protected]>2022-01-04 19:09:33 +0800
committerKeuin <[email protected]>2022-01-04 19:18:44 +0800
commit83b689216daf35d3da8f33be9a62c46403a577e5 (patch)
tree692d558c4d02400e03142365886c01b0edc23480 /src/main/java/com/keuin/kbackupfabric/ui
parent7ca4ac1080d8dd896f16215bda1639c4bf516dcd (diff)
Make it compile for Minecraft 1.18.
Diffstat (limited to 'src/main/java/com/keuin/kbackupfabric/ui')
-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),