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