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
|
|
|
|
and curing a villager on repeat by simply resetting 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
|
2020-11-12 02:48:12 +01:00
|
|
|
index 771e4e76e88156e255a6125f56e3cae297bbea6c..f2e09eef7b0b9edd7db890aef608f1788a312e10 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
|
2020-11-12 02:48:12 +01:00
|
|
|
@@ -713,4 +713,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);
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityVillager.java b/src/main/java/net/minecraft/server/EntityVillager.java
|
|
|
|
index 0388d1099f2a6d436a5a5e58bbbdae3ddab969e7..9b35c8ad9efe9241fe442bc6ef2e9f62def386d8 100644
|
|
|
|
--- a/src/main/java/net/minecraft/server/EntityVillager.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityVillager.java
|
|
|
|
@@ -39,7 +39,7 @@ public class EntityVillager extends EntityVillagerAbstract implements Reputation
|
|
|
|
@Nullable
|
|
|
|
private EntityHuman bv;
|
|
|
|
private byte bx;
|
|
|
|
- private final Reputation by;
|
|
|
|
+ private Reputation by; private void resetReputation() { this.by = new Reputation(); } // Paper - OBFHELPER
|
|
|
|
private long bz;
|
|
|
|
private long bA;
|
|
|
|
private int bB;
|
|
|
|
@@ -923,6 +923,7 @@ public class EntityVillager extends EntityVillagerAbstract implements Reputation
|
|
|
|
@Override
|
|
|
|
public void a(ReputationEvent reputationevent, Entity entity) {
|
|
|
|
if (reputationevent == ReputationEvent.a) {
|
|
|
|
+ if (world.paperConfig.fixCuringZombieVillagerDiscountExploit) this.resetReputation(); // Paper - fix MC-181190
|
|
|
|
this.by.a(entity.getUniqueID(), ReputationType.MAJOR_POSITIVE, 20);
|
|
|
|
this.by.a(entity.getUniqueID(), ReputationType.MINOR_POSITIVE, 25);
|
|
|
|
} else if (reputationevent == ReputationEvent.e) {
|