Fixes #1490
This commit is contained in:
parent
09a75893e4
commit
90e0ea23b9
1 changed files with 6 additions and 4 deletions
|
@ -190,10 +190,12 @@ public class ItemNanosaber extends ItemSword implements IEnergyItemInfo, IEnergy
|
||||||
@Override
|
@Override
|
||||||
public void onUpdate(ItemStack stack, World worldIn, Entity entityIn, int itemSlot, boolean isSelected) {
|
public void onUpdate(ItemStack stack, World worldIn, Entity entityIn, int itemSlot, boolean isSelected) {
|
||||||
if (stack.getTagCompound() != null && stack.getTagCompound().getBoolean("isActive") && !PoweredItem.canUseEnergy(cost, stack)) {
|
if (stack.getTagCompound() != null && stack.getTagCompound().getBoolean("isActive") && !PoweredItem.canUseEnergy(cost, stack)) {
|
||||||
ChatUtils.sendNoSpamMessages(MessageIDs.nanosaberID, new TextComponentString(
|
if(worldIn.isRemote){
|
||||||
TextFormatting.GRAY + I18n.format("techreborn.message.nanosaberEnergyError") + " "
|
ChatUtils.sendNoSpamMessages(MessageIDs.nanosaberID, new TextComponentString(
|
||||||
+ TextFormatting.GOLD + I18n
|
TextFormatting.GRAY + I18n.format("techreborn.message.nanosaberEnergyError") + " "
|
||||||
.format("techreborn.message.nanosaberDeactivating")));
|
+ TextFormatting.GOLD + I18n
|
||||||
|
.format("techreborn.message.nanosaberDeactivating")));
|
||||||
|
}
|
||||||
stack.getTagCompound().setBoolean("isActive", false);
|
stack.getTagCompound().setBoolean("isActive", false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue