2020-07-17 18:05:50 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2020-06-27 19:00:18 +02:00
|
|
|
From: tr7zw <tr7zw@live.de>
|
|
|
|
Date: Tue, 21 Apr 2020 16:14:10 +0200
|
|
|
|
Subject: [PATCH] Modify default configs
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperConfig.java b/src/main/java/com/destroystokyo/paper/PaperConfig.java
|
2020-12-22 15:01:31 +01:00
|
|
|
index 041016de85360adacf4a5d0845bb1ebcc25a14b9..0f45769b5d8b9b6c4a89550db16576c5c7221e04 100644
|
2020-06-27 19:00:18 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperConfig.java
|
2020-12-01 08:42:51 +01:00
|
|
|
@@ -206,7 +206,7 @@ public class PaperConfig {
|
2020-06-27 19:00:18 +02:00
|
|
|
|
|
|
|
public static String timingsServerName;
|
|
|
|
private static void timings() {
|
|
|
|
- boolean timings = getBoolean("timings.enabled", true);
|
2020-08-03 18:48:42 +02:00
|
|
|
+ boolean timings = getBoolean("timings.enabled", false); // Yatopia don't profile by default
|
2020-06-27 19:00:18 +02:00
|
|
|
boolean verboseTimings = getBoolean("timings.verbose", true);
|
|
|
|
TimingsManager.privacy = getBoolean("timings.server-name-privacy", false);
|
|
|
|
TimingsManager.hiddenConfigs = getList("timings.hidden-config-entries", Lists.newArrayList("database", "settings.bungeecord-addresses"));
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2020-12-13 16:18:57 +01:00
|
|
|
index 2452f54d96cab2d93140c64e25d9b799cbc94caa..c3f38f3228e0104d878b3e116f203efc64279710 100644
|
2020-06-27 19:00:18 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2020-11-15 14:39:13 +01:00
|
|
|
@@ -598,7 +598,7 @@ public class PaperWorldConfig {
|
2020-06-27 19:00:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean cooldownHopperWhenFull = true;
|
|
|
|
- public boolean disableHopperMoveEvents = false;
|
2020-08-03 18:48:42 +02:00
|
|
|
+ public boolean disableHopperMoveEvents = true; // Yatopia disable by default
|
2020-06-27 19:00:18 +02:00
|
|
|
private void hopperOptimizations() {
|
|
|
|
cooldownHopperWhenFull = getBoolean("hopper.cooldown-when-full", cooldownHopperWhenFull);
|
|
|
|
log("Cooldown Hoppers when Full: " + (cooldownHopperWhenFull ? "enabled" : "disabled"));
|