mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 03:52:45 +01:00
Implement default title for custom merchants
By: md_5 <git@md-5.net>
This commit is contained in:
parent
22dd0c1849
commit
fe2d118352
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue