Implement default title for custom merchants

This commit is contained in:
md_5 2016-11-22 10:53:36 +11:00
parent 6220b5c542
commit 7359112e8c

View File

@ -1484,7 +1484,7 @@ public final class CraftServer implements Server {
@Override
public Merchant createMerchant(String title) {
return new CraftMerchantCustom(title);
return new CraftMerchantCustom(title == null ? InventoryType.MERCHANT.getDefaultTitle() : title);
}
@Override