Fix zapper not working (StringTextComponent.EMPTY != null)

This commit is contained in:
grimmauld 2020-10-07 12:21:48 +02:00
parent b9476b58ce
commit 482e02e5d3

View File

@ -138,7 +138,7 @@ public abstract class ZapperItem extends Item {
// Check if can be used
ITextComponent msg = validateUsage(item);
if (msg != null) {
if (msg != StringTextComponent.EMPTY) {
world.playSound(player, player.getBlockPos(), AllSoundEvents.BLOCKZAPPER_DENY.get(), SoundCategory.BLOCKS,
1f, 0.5f);
player.sendStatusMessage(msg.copy().formatted(TextFormatting.RED), true);