2020-05-06 11:48:49 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2019-04-27 08:26:04 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Tue, 20 Dec 2016 15:26:27 -0500
|
|
|
|
Subject: [PATCH] Configurable Cartographer Treasure Maps
|
|
|
|
|
|
|
|
Allow configuring for cartographers to return the same map location
|
|
|
|
|
|
|
|
Also allow turning off treasure maps all together as they can eat up Map ID's
|
|
|
|
which are limited in quantity.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2020-05-06 11:48:49 +02:00
|
|
|
index bff2e9d26dc8057c3950d1b57ee2e7469e7f943c..f164844f339793860e773c499443ce160d0a6830 100644
|
2019-04-27 08:26:04 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2020-01-18 18:28:32 +01:00
|
|
|
@@ -312,4 +312,14 @@ public class PaperWorldConfig {
|
2019-04-27 08:26:04 +02:00
|
|
|
Bukkit.getLogger().warning("Spawn Egg and Armor Stand NBT filtering disabled, this is a potential security risk");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public boolean enableTreasureMaps = true;
|
|
|
|
+ public boolean treasureMapsAlreadyDiscovered = false;
|
|
|
|
+ private void treasureMapsAlreadyDiscovered() {
|
|
|
|
+ enableTreasureMaps = getBoolean("enable-treasure-maps", true);
|
|
|
|
+ treasureMapsAlreadyDiscovered = getBoolean("treasure-maps-return-already-discovered", false);
|
|
|
|
+ if (treasureMapsAlreadyDiscovered) {
|
|
|
|
+ log("Treasure Maps will return already discovered locations");
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
}
|
2020-06-16 22:31:54 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/LootItemFunctionExplorationMap.java b/src/main/java/net/minecraft/server/LootItemFunctionExplorationMap.java
|
2020-06-25 14:04:34 +02:00
|
|
|
index 32a98e758b9df48005ddc5283eacdc5123a32c39..30f21e3ff7eed3c7291e01b94cc0f66fd48756d0 100644
|
2020-06-16 22:31:54 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/LootItemFunctionExplorationMap.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/LootItemFunctionExplorationMap.java
|
2020-06-25 14:04:34 +02:00
|
|
|
@@ -48,6 +48,15 @@ public class LootItemFunctionExplorationMap extends LootItemFunctionConditional
|
2020-06-16 22:31:54 +02:00
|
|
|
|
|
|
|
if (blockposition != null) {
|
2020-06-25 14:04:34 +02:00
|
|
|
WorldServer worldserver = loottableinfo.getWorld();
|
2020-06-16 22:31:54 +02:00
|
|
|
+ // Paper start
|
|
|
|
+ if (!worldserver.paperConfig.enableTreasureMaps) {
|
|
|
|
+ /*
|
|
|
|
+ * NOTE: I fear users will just get a plain map as their "treasure"
|
|
|
|
+ * This is preferable to disrespecting the config.
|
|
|
|
+ */
|
|
|
|
+ return itemstack;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
2020-06-25 14:04:34 +02:00
|
|
|
BlockPosition blockposition1 = worldserver.a(this.e, blockposition, this.h, this.i);
|
2020-06-16 22:31:54 +02:00
|
|
|
|
|
|
|
if (blockposition1 != null) {
|
2019-04-27 08:26:04 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/VillagerTrades.java b/src/main/java/net/minecraft/server/VillagerTrades.java
|
2020-06-25 14:04:34 +02:00
|
|
|
index 532460e7549192dfe6170e2bf489edb46b8b5737..d0c2ec4050458e26d1bd85cc09b1a3fdca8488c6 100644
|
2019-04-27 08:26:04 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/VillagerTrades.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/VillagerTrades.java
|
2020-06-25 14:04:34 +02:00
|
|
|
@@ -91,7 +91,8 @@ public class VillagerTrades {
|
2019-12-12 00:43:22 +01:00
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
WorldServer worldserver = (WorldServer) entity.world;
|
2020-06-25 14:04:34 +02:00
|
|
|
- BlockPosition blockposition = worldserver.a(this.b, entity.getChunkCoordinates(), 100, true);
|
|
|
|
+ if (!worldserver.paperConfig.enableTreasureMaps) return null; // Paper
|
|
|
|
+ BlockPosition blockposition = worldserver.a(this.b, entity.getChunkCoordinates(), 100, !worldserver.paperConfig.treasureMapsAlreadyDiscovered); // Paper
|
2019-04-27 08:26:04 +02:00
|
|
|
|
2019-12-12 00:43:22 +01:00
|
|
|
if (blockposition != null) {
|
|
|
|
ItemStack itemstack = ItemWorldMap.createFilledMapView(worldserver, blockposition.getX(), blockposition.getZ(), (byte) 2, true, true);
|