2019-07-17 00:09:32 +02:00
|
|
|
From ea4b1c7e6c9ea1cff1f6a48fa97087f63531c4d1 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
|
2019-07-17 00:09:32 +02:00
|
|
|
index 11b0f11a8..46d525223 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
|
2019-07-03 22:44:07 +02:00
|
|
|
@@ -305,4 +305,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");
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/VillagerTrades.java b/src/main/java/net/minecraft/server/VillagerTrades.java
|
2019-07-17 00:09:32 +02:00
|
|
|
index 2a4e4f785..0b6632369 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
|
|
|
|
@@ -89,6 +89,7 @@ public class VillagerTrades {
|
|
|
|
@Override
|
|
|
|
public MerchantRecipe a(Entity entity, Random random) {
|
|
|
|
World world = entity.world;
|
|
|
|
+ if (!world.paperConfig.enableTreasureMaps) return null; //Paper
|
|
|
|
BlockPosition blockposition = world.a(this.b, new BlockPosition(entity), 100, true);
|
|
|
|
|
|
|
|
if (blockposition != null) {
|
|
|
|
--
|
2019-06-25 21:18:50 +02:00
|
|
|
2.22.0
|
2019-04-27 08:26:04 +02:00
|
|
|
|