summaryrefslogtreecommitdiff
path: root/src/main/java/com/keuin/kbackupfabric/ui/KBCommands.java
diff options
context:
space:
mode:
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),