CraftBukkit/nms-patches/net/minecraft/world/entity/npc/EntityVillagerTrader.patch
2025-03-26 03:05:00 +11:00

55 lines
3.0 KiB
Diff

--- a/net/minecraft/world/entity/npc/EntityVillagerTrader.java
+++ b/net/minecraft/world/entity/npc/EntityVillagerTrader.java
@@ -45,6 +45,14 @@
import net.minecraft.world.phys.Vec3D;
import org.apache.commons.lang3.tuple.Pair;
+// CraftBukkit start
+import org.bukkit.Bukkit;
+import org.bukkit.craftbukkit.inventory.CraftMerchantRecipe;
+import org.bukkit.entity.AbstractVillager;
+import org.bukkit.event.entity.EntityRemoveEvent;
+import org.bukkit.event.entity.VillagerAcquireTradeEvent;
+// CraftBukkit end
+
public class EntityVillagerTrader extends EntityVillagerAbstract implements Consumable.b {
private static final int DEFAULT_DESPAWN_DELAY = 0;
@@ -54,15 +62,16 @@
public EntityVillagerTrader(EntityTypes<? extends EntityVillagerTrader> entitytypes, World world) {
super(entitytypes, world);
+ this.setDespawnDelay(48000); // CraftBukkit - set default from MobSpawnerTrader
}
@Override
protected void registerGoals() {
this.goalSelector.addGoal(0, new PathfinderGoalFloat(this));
- this.goalSelector.addGoal(0, new PathfinderGoalUseItem(this, PotionContents.createItemStack(Items.POTION, Potions.INVISIBILITY), SoundEffects.WANDERING_TRADER_DISAPPEARED, (entityvillagertrader) -> {
+ this.goalSelector.addGoal(0, new PathfinderGoalUseItem<>(this, PotionContents.createItemStack(Items.POTION, Potions.INVISIBILITY), SoundEffects.WANDERING_TRADER_DISAPPEARED, (entityvillagertrader) -> { // CraftBukkit - decompile error
return this.level().isDarkOutside() && !entityvillagertrader.isInvisible();
}));
- this.goalSelector.addGoal(0, new PathfinderGoalUseItem(this, new ItemStack(Items.MILK_BUCKET), SoundEffects.WANDERING_TRADER_REAPPEARED, (entityvillagertrader) -> {
+ this.goalSelector.addGoal(0, new PathfinderGoalUseItem<>(this, new ItemStack(Items.MILK_BUCKET), SoundEffects.WANDERING_TRADER_REAPPEARED, (entityvillagertrader) -> { // CraftBukkit - decompile error
return this.level().isBrightOutside() && entityvillagertrader.isInvisible();
}));
this.goalSelector.addGoal(1, new PathfinderGoalTradeWithPlayer(this));
@@ -140,7 +149,7 @@
public void readAdditionalSaveData(NBTTagCompound nbttagcompound) {
super.readAdditionalSaveData(nbttagcompound);
this.despawnDelay = nbttagcompound.getIntOr("DespawnDelay", 0);
- this.wanderTarget = (BlockPosition) nbttagcompound.read("wander_target", BlockPosition.CODEC).orElse((Object) null);
+ this.wanderTarget = (BlockPosition) nbttagcompound.read("wander_target", BlockPosition.CODEC).orElse(null); // CraftBukkit - decompile error
this.setAge(Math.max(0, this.getAge()));
}
@@ -208,7 +217,7 @@
private void maybeDespawn() {
if (this.despawnDelay > 0 && !this.isTrading() && --this.despawnDelay == 0) {
- this.discard();
+ this.discard(EntityRemoveEvent.Cause.DESPAWN); // CraftBukkit - add Bukkit remove cause
}
}