From ab4a7dae06739769f7b2c9921c49a68170ff1baa Mon Sep 17 00:00:00 2001 From: Buuz135 Date: Sat, 1 Jun 2019 20:23:37 +0200 Subject: [PATCH] Fixed translation methods on the server side, closes #45 --- .../java/com/buuz135/portality/block/BlockController.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/buuz135/portality/block/BlockController.java b/src/main/java/com/buuz135/portality/block/BlockController.java index e75ca0a..3c5f811 100644 --- a/src/main/java/com/buuz135/portality/block/BlockController.java +++ b/src/main/java/com/buuz135/portality/block/BlockController.java @@ -30,7 +30,6 @@ import com.buuz135.portality.tile.TileController; import net.minecraft.block.material.Material; import net.minecraft.block.state.IBlockState; -import net.minecraft.client.resources.I18n; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.ItemStack; @@ -38,6 +37,7 @@ import net.minecraft.util.EnumFacing; import net.minecraft.util.EnumHand; import net.minecraft.util.math.BlockPos; +import net.minecraft.util.text.TextComponentString; import net.minecraft.util.text.TextComponentTranslation; import net.minecraft.util.text.TextFormatting; import net.minecraft.world.Explosion; @@ -99,11 +99,11 @@ public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, return super.onBlockActivated(worldIn, pos, state, playerIn, hand, facing, hitX, hitY, hitZ); } if (!controller.isFormed()) { - playerIn.sendStatusMessage(new TextComponentTranslation(TextFormatting.RED + I18n.format("portality.controller.error.size")), true); + playerIn.sendStatusMessage(new TextComponentString(TextFormatting.RED + new TextComponentTranslation("portality.controller.error.size").getFormattedText()), true); return true; } if (controller.isPrivate() && !controller.getOwner().equals(playerIn.getUniqueID())) { - playerIn.sendStatusMessage(new TextComponentTranslation(TextFormatting.RED + I18n.format("portality.controller.error.privacy")), true); + playerIn.sendStatusMessage(new TextComponentString(TextFormatting.RED + new TextComponentTranslation("portality.controller.error.privacy").getFormattedText()), true); return true; } ItemStack stack = playerIn.getHeldItem(hand); @@ -112,7 +112,7 @@ public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, return true; } if (playerIn.isSneaking() && controller.getOwner().equals(playerIn.getUniqueID()) && !stack.isEmpty() && !stack.isItemEqual(controller.getDisplay())) { - playerIn.sendStatusMessage(new TextComponentTranslation(TextFormatting.GREEN + I18n.format("portility.controller.info.icon_changed")), true); + playerIn.sendStatusMessage(new TextComponentString(TextFormatting.GREEN + new TextComponentTranslation("portility.controller.info.icon_changed").getFormattedText()), true); controller.setDisplayNameEnabled(playerIn.getHeldItem(hand)); return true; }