Skip to content

Commit

Permalink
Fix treasure map config default
Browse files Browse the repository at this point in the history
  • Loading branch information
Machine-Maker committed Aug 4, 2023
1 parent f402f89 commit 2b43c4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions patches/server/0005-Paper-config-files.patch
Original file line number Diff line number Diff line change
Expand Up @@ -3806,7 +3806,7 @@ index 0000000000000000000000000000000000000000..d08b65234192d5b639cead675114f64b
+}
diff --git a/src/main/java/io/papermc/paper/configuration/type/BooleanOrDefault.java b/src/main/java/io/papermc/paper/configuration/type/BooleanOrDefault.java
new file mode 100644
index 0000000000000000000000000000000000000000..3e422b74a377fa3edaf82dd960e7449c998c2912
index 0000000000000000000000000000000000000000..33ae915b2462faf1705be3b195e113c154352653
--- /dev/null
+++ b/src/main/java/io/papermc/paper/configuration/type/BooleanOrDefault.java
@@ -0,0 +1,53 @@
Expand All @@ -3827,7 +3827,7 @@ index 0000000000000000000000000000000000000000..3e422b74a377fa3edaf82dd960e7449c
+ public static final ScalarSerializer<BooleanOrDefault> SERIALIZER = new Serializer();
+
+ public boolean or(boolean fallback) {
+ return this.value != null && this.value;
+ return this.value == null ? fallback : this.value;
+ }
+
+ private static final class Serializer extends ScalarSerializer<BooleanOrDefault> {
Expand Down

0 comments on commit 2b43c4d

Please sign in to comment.