mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-04 10:11:29 +01:00
c78111ca2c
This is an ode to all those times when you shoulda just gone to bed
36 lines
1.7 KiB
Diff
36 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 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperConfig.java
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperConfig.java
|
|
@@ -0,0 +0,0 @@ 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();
|
|
+ }
|
|
+ }
|
|
}
|