#1090: Remove no longer needed world reference from CraftMerchantCustom

This commit is contained in:
blablubbabc 2022-07-25 18:00:57 +10:00 committed by md_5
parent 7550f6854e
commit d12768f755
No known key found for this signature in database
GPG Key ID: E8E901AC7C617C11

View File

@ -34,7 +34,6 @@ public class CraftMerchantCustom extends CraftMerchant {
private final IChatBaseComponent title; private final IChatBaseComponent title;
private final MerchantRecipeList trades = new MerchantRecipeList(); private final MerchantRecipeList trades = new MerchantRecipeList();
private EntityHuman tradingPlayer; private EntityHuman tradingPlayer;
private World tradingWorld;
protected CraftMerchant craftMerchant; protected CraftMerchant craftMerchant;
public MinecraftMerchant(String title) { public MinecraftMerchant(String title) {
@ -50,9 +49,6 @@ public class CraftMerchantCustom extends CraftMerchant {
@Override @Override
public void setTradingPlayer(EntityHuman entityhuman) { public void setTradingPlayer(EntityHuman entityhuman) {
this.tradingPlayer = entityhuman; this.tradingPlayer = entityhuman;
if (entityhuman != null) {
this.tradingWorld = entityhuman.level;
}
} }
@Override @Override