2019-04-05 04:52:02 +00:00
|
|
|
From 7306db580bb63b51c6e135d5071f169ecde0ab1b Mon Sep 17 00:00:00 2001
|
2016-12-20 20:28:32 +00: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-04-05 04:52:02 +00:00
|
|
|
index 1593f2e2f..a47f6a339 100644
|
2016-12-20 20:28:32 +00:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2019-04-05 04:52:02 +00:00
|
|
|
@@ -358,4 +358,14 @@ public class PaperWorldConfig {
|
2016-12-20 20:28:32 +00: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/EntityVillager.java b/src/main/java/net/minecraft/server/EntityVillager.java
|
2019-01-01 03:15:55 +00:00
|
|
|
index 213d0b18c..ebe397b15 100644
|
2016-12-20 20:28:32 +00:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityVillager.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityVillager.java
|
2019-01-01 03:15:55 +00:00
|
|
|
@@ -752,6 +752,7 @@ public class EntityVillager extends EntityAgeable implements NPC, IMerchant {
|
2016-12-20 20:28:32 +00:00
|
|
|
public void a(IMerchant imerchant, MerchantRecipeList merchantrecipelist, Random random) {
|
|
|
|
int i = this.a.a(random);
|
2018-07-17 20:32:05 +00:00
|
|
|
World world = imerchant.getWorld();
|
2017-10-30 13:06:35 +00:00
|
|
|
+ if (!world.paperConfig.enableTreasureMaps) return; //Paper
|
2018-08-26 18:11:49 +00:00
|
|
|
BlockPosition blockposition = world.a(this.b, imerchant.getPosition(), 100, true);
|
2016-12-20 20:28:32 +00:00
|
|
|
|
|
|
|
if (blockposition != null) {
|
|
|
|
--
|
2019-04-05 04:52:02 +00:00
|
|
|
2.21.0
|
2016-12-20 20:28:32 +00:00
|
|
|
|