mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-07 03:10:50 +01:00
37 lines
1.7 KiB
Diff
37 lines
1.7 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Mark Vainomaa <mikroskeem@mikroskeem.eu>
|
|
Date: Mon, 26 Mar 2018 18:30:53 +0300
|
|
Subject: [PATCH] Upstream config migrations
|
|
|
|
This patch contains config migrations for when upstream adds options
|
|
which Paper already had.
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperConfig.java b/src/main/java/com/destroystokyo/paper/PaperConfig.java
|
|
index 71288ac78dc0adb4fdb692d3f69debbff84ffa74..61d6c4ed39fb7d3ebdeafd8f84fa2f40f3714201 100644
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperConfig.java
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperConfig.java
|
|
@@ -291,4 +291,23 @@ public class PaperConfig {
|
|
private static void authenticationServersDownKickMessage() {
|
|
authenticationServersDownKickMessage = Strings.emptyToNull(getString("messages.kick.authentication-servers-down", authenticationServersDownKickMessage));
|
|
}
|
|
+
|
|
+ private static void savePlayerData() {
|
|
+ Object val = config.get("settings.save-player-data");
|
|
+ if (val instanceof Boolean) {
|
|
+ SpigotConfig.disablePlayerDataSaving = !(Boolean) val;
|
|
+ SpigotConfig.config.set("players.disable-saving", SpigotConfig.disablePlayerDataSaving);
|
|
+ SpigotConfig.save();
|
|
+ config.set("settings.save-player-data", null);
|
|
+ }
|
|
+ }
|
|
+
|
|
+ private static void namedEntityDeaths() {
|
|
+ Object val = config.get("settings.log-named-entity-deaths");
|
|
+ if (val instanceof Boolean bool && !bool) {
|
|
+ SpigotConfig.logNamedDeaths = false;
|
|
+ SpigotConfig.config.set("settings.log-named-deaths", false);
|
|
+ SpigotConfig.save();
|
|
+ }
|
|
+ }
|
|
}
|