Merge pull request #49 from Szum123321/42_bugifx

42 bugifx
This commit is contained in:
Szum123321 2020-11-25 10:42:16 +01:00 committed by GitHub
commit 231af19958
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 94 additions and 70 deletions

View File

@ -2,13 +2,13 @@
org.gradle.jvmargs=-Xmx1G org.gradle.jvmargs=-Xmx1G
minecraft_version=1.16.3 minecraft_version=1.16.3
yarn_mappings=1.16.3+build.7 yarn_mappings=1.16.3+build.47
loader_version=0.9.3+build.207 loader_version=0.10.5+build.213
#Fabric api #Fabric api
fabric_version=0.20.2+build.402-1.16 fabric_version=0.24.3+build.414-1.16
# Mod Properties # Mod Properties
mod_version = 2.0.1 mod_version = 2.0.2
maven_group = net.szum123321 maven_group = net.szum123321
archives_base_name = textile_backup archives_base_name = textile_backup

View File

@ -42,13 +42,13 @@ public class ConfigHandler {
@Comment("\nShould backup be made on server shutdown?\n") @Comment("\nShould backup be made on server shutdown?\n")
public boolean shutdownBackup = true; public boolean shutdownBackup = true;
@Comment("\nShould old world be backed-up?\n") @Comment("\nShould world be backed up before restoring a backup?\n")
public boolean backupOldWorlds = true; public boolean backupOldWorlds = true;
@Comment("\nShould every world has its won backup folder?\n") @Comment("\nShould every world have its own backup folder?\n")
public boolean perWorldBackup = true; public boolean perWorldBackup = true;
@Comment("\nA path to backup folder\n") @Comment("\nA path to the backup folder\n")
public String path = "backup/"; public String path = "backup/";
@Comment("\nThis setting allows you to exclude files form being backedup.\n"+ @Comment("\nThis setting allows you to exclude files form being backedup.\n"+

View File

@ -19,6 +19,7 @@
package net.szum123321.textile_backup.core; package net.szum123321.textile_backup.core;
import net.minecraft.server.MinecraftServer; import net.minecraft.server.MinecraftServer;
import net.minecraft.server.world.ServerWorld;
import net.minecraft.util.registry.Registry; import net.minecraft.util.registry.Registry;
import net.minecraft.util.registry.RegistryKey; import net.minecraft.util.registry.RegistryKey;
import net.minecraft.world.dimension.DimensionType; import net.minecraft.world.dimension.DimensionType;
@ -49,6 +50,22 @@ public class Utilities {
.getWorldDirectory(RegistryKey.of(Registry.DIMENSION, DimensionType.OVERWORLD_REGISTRY_KEY.getValue())); .getWorldDirectory(RegistryKey.of(Registry.DIMENSION, DimensionType.OVERWORLD_REGISTRY_KEY.getValue()));
} }
public static void disableWorldSaving(MinecraftServer server) {
for (ServerWorld serverWorld : server.getWorlds()) {
if (serverWorld != null && !serverWorld.savingDisabled) {
serverWorld.savingDisabled = true;
}
}
}
public static void enableWorldSaving(MinecraftServer server) {
for (ServerWorld serverWorld : server.getWorlds()) {
if (serverWorld != null && serverWorld.savingDisabled) {
serverWorld.savingDisabled = false;
}
}
}
public static boolean isWindows() { public static boolean isWindows() {
return System.getProperty("os.name").toLowerCase().contains("win"); return System.getProperty("os.name").toLowerCase().contains("win");
} }

View File

@ -53,7 +53,10 @@ public class BackupHelper {
if (ctx.shouldSave()) { if (ctx.shouldSave()) {
Statics.LOGGER.sendInfo(ctx.getCommandSource(), "Saving server..."); Statics.LOGGER.sendInfo(ctx.getCommandSource(), "Saving server...");
Statics.LOGGER.info( "Saving server..."); Statics.LOGGER.info( "Saving server...");
ctx.getServer().save(true, true, false);
ctx.getServer().save(true, true, true);
Utilities.disableWorldSaving(ctx.getServer());
} }
return new MakeBackupRunnable(ctx); return new MakeBackupRunnable(ctx);

View File

@ -35,6 +35,7 @@ public class MakeBackupRunnable implements Runnable {
@Override @Override
public void run() { public void run() {
try {
Statics.LOGGER.sendInfo(context.getCommandSource(), "Starting backup"); Statics.LOGGER.sendInfo(context.getCommandSource(), "Starting backup");
Statics.LOGGER.info("Starting backup"); Statics.LOGGER.info("Starting backup");
@ -100,6 +101,9 @@ public class MakeBackupRunnable implements Runnable {
Statics.LOGGER.sendInfo(context, "Done!"); Statics.LOGGER.sendInfo(context, "Done!");
Statics.LOGGER.info("Done!"); Statics.LOGGER.info("Done!");
} finally {
Utilities.enableWorldSaving(context.getServer());
}
} }
private String getFileName(){ private String getFileName(){