2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: BillyGalbreath <blake.galbreath@gmail.com>
|
|
|
|
Date: Tue, 8 Dec 2020 20:14:20 -0600
|
|
|
|
Subject: [PATCH] Fix curing zombie villager discount exploit
|
|
|
|
|
|
|
|
This fixes the exploit used to gain absurd trading discounts with infecting
|
|
|
|
and curing a villager on repeat by simply resetting the relevant part of
|
|
|
|
the reputation when it is cured.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2021-11-24 18:58:26 +01:00
|
|
|
index 0759b9dbd37ca640b7fe410e0ecb6519542f991b..ba55c0691e227e4e74a53389d942f78edcdd79b4 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2021-11-24 18:58:26 +01:00
|
|
|
@@ -97,6 +97,11 @@ public class PaperWorldConfig {
|
2021-06-11 14:02:28 +02:00
|
|
|
fixClimbingBypassingCrammingRule = getBoolean("fix-climbing-bypassing-cramming-rule", fixClimbingBypassingCrammingRule);
|
|
|
|
}
|
2021-06-14 20:50:22 +02:00
|
|
|
|
2021-06-11 14:02:28 +02:00
|
|
|
+ public boolean fixCuringZombieVillagerDiscountExploit = true;
|
|
|
|
+ private void fixCuringExploit() {
|
|
|
|
+ fixCuringZombieVillagerDiscountExploit = getBoolean("game-mechanics.fix-curing-zombie-villager-discount-exploit", fixCuringZombieVillagerDiscountExploit);
|
|
|
|
+ }
|
2021-06-14 20:50:22 +02:00
|
|
|
+
|
|
|
|
public short keepLoadedRange;
|
|
|
|
private void keepLoadedRange() {
|
|
|
|
keepLoadedRange = (short) (getInt("keep-spawn-loaded-range", Math.min(spigotConfig.viewDistance, 10)) * 16);
|
2021-06-11 14:02:28 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/npc/Villager.java b/src/main/java/net/minecraft/world/entity/npc/Villager.java
|
2021-11-24 17:39:04 +01:00
|
|
|
index 353ee3699c7c7e40dc920e687055d82e23f02008..dbd17107f08c218d88ef075fc04823b83083648b 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/npc/Villager.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/npc/Villager.java
|
2021-11-24 17:39:04 +01:00
|
|
|
@@ -1059,6 +1059,15 @@ public class Villager extends AbstractVillager implements ReputationEventHandler
|
2021-06-11 14:02:28 +02:00
|
|
|
@Override
|
|
|
|
public void onReputationEventFrom(ReputationEventType interaction, Entity entity) {
|
|
|
|
if (interaction == ReputationEventType.ZOMBIE_VILLAGER_CURED) {
|
|
|
|
+ // Paper start - fix MC-181190
|
|
|
|
+ if (level.paperConfig.fixCuringZombieVillagerDiscountExploit) {
|
2021-06-17 22:20:03 +02:00
|
|
|
+ final GossipContainer.EntityGossips playerReputation = this.getGossips().getReputations().get(entity.getUUID());
|
2021-06-11 14:02:28 +02:00
|
|
|
+ if (playerReputation != null) {
|
2021-06-14 20:50:22 +02:00
|
|
|
+ playerReputation.remove(GossipType.MAJOR_POSITIVE);
|
|
|
|
+ playerReputation.remove(GossipType.MINOR_POSITIVE);
|
2021-06-11 14:02:28 +02:00
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
this.gossips.add(entity.getUUID(), GossipType.MAJOR_POSITIVE, 20);
|
|
|
|
this.gossips.add(entity.getUUID(), GossipType.MINOR_POSITIVE, 25);
|
|
|
|
} else if (interaction == ReputationEventType.TRADE) {
|