2020-12-09 04:56:22 +01: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
|
2021-01-15 18:40:10 +01:00
|
|
|
and curing a villager on repeat by simply resetting the relevant part of
|
|
|
|
the reputation when it is cured.
|
2020-12-09 04:56:22 +01:00
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2021-01-11 02:44:06 +01:00
|
|
|
index 6262246c4018c660705fbad028f297fc44e7197f..9ebe8771c2d5e843756868824740ef599ca8455f 100644
|
2020-12-09 04:56:22 +01:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2021-01-11 02:44:06 +01:00
|
|
|
@@ -715,4 +715,9 @@ public class PaperWorldConfig {
|
2020-12-09 04:56:22 +01:00
|
|
|
private void fixClimbingBypassingCrammingRule() {
|
|
|
|
fixClimbingBypassingCrammingRule = getBoolean("fix-climbing-bypassing-cramming-rule", fixClimbingBypassingCrammingRule);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public boolean fixCuringZombieVillagerDiscountExploit = true;
|
|
|
|
+ private void fixCuringExploit() {
|
|
|
|
+ fixCuringZombieVillagerDiscountExploit = getBoolean("game-mechanics.fix-curing-zombie-villager-discount-exploit", fixCuringZombieVillagerDiscountExploit);
|
|
|
|
+ }
|
|
|
|
}
|
2021-03-16 08:19:45 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/ai/gossip/Reputation.java b/src/main/java/net/minecraft/world/entity/ai/gossip/Reputation.java
|
|
|
|
index 7d34d1157786227ac210edc1595a024ccb61a3e9..ce8a4cc9f642a740947c4e63d6eb78ad93a0fd44 100644
|
|
|
|
--- a/src/main/java/net/minecraft/world/entity/ai/gossip/Reputation.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/ai/gossip/Reputation.java
|
|
|
|
@@ -223,6 +223,7 @@ public class Reputation {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
+ public final void removeReputationForType(ReputationType reputationType) { this.b(reputationType); } // Paper - OBFHELPER
|
|
|
|
public void b(ReputationType reputationtype) {
|
|
|
|
this.a.removeInt(reputationtype);
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/npc/EntityVillager.java b/src/main/java/net/minecraft/world/entity/npc/EntityVillager.java
|
2021-05-09 22:50:09 +02:00
|
|
|
index e24c598c9d662144b91075ac80a193db2e0cb111..3f081177814dc874047e35e294ed18609f082d76 100644
|
2021-03-16 08:19:45 +01:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/npc/EntityVillager.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/npc/EntityVillager.java
|
2021-05-09 22:50:09 +02:00
|
|
|
@@ -1014,6 +1014,15 @@ public class EntityVillager extends EntityVillagerAbstract implements Reputation
|
2020-12-09 04:56:22 +01:00
|
|
|
@Override
|
|
|
|
public void a(ReputationEvent reputationevent, Entity entity) {
|
|
|
|
if (reputationevent == ReputationEvent.a) {
|
2021-01-15 18:40:10 +01:00
|
|
|
+ // Paper start - fix MC-181190
|
|
|
|
+ if (world.paperConfig.fixCuringZombieVillagerDiscountExploit) {
|
|
|
|
+ final Reputation.a playerReputation = this.getReputation().getReputations().get(entity.getUniqueID());
|
|
|
|
+ if (playerReputation != null) {
|
|
|
|
+ playerReputation.removeReputationForType(ReputationType.MAJOR_POSITIVE);
|
|
|
|
+ playerReputation.removeReputationForType(ReputationType.MINOR_POSITIVE);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
2020-12-09 04:56:22 +01:00
|
|
|
this.by.a(entity.getUniqueID(), ReputationType.MAJOR_POSITIVE, 20);
|
|
|
|
this.by.a(entity.getUniqueID(), ReputationType.MINOR_POSITIVE, 25);
|
|
|
|
} else if (reputationevent == ReputationEvent.e) {
|