Updated mappings

This commit is contained in:
drcrazy 2019-02-22 14:36:13 +03:00
parent b864d551dd
commit 647b126c98
8 changed files with 18 additions and 24 deletions

View file

@ -120,7 +120,7 @@ public class ItemFrequencyTransmitter extends Item {
tooltip.add(new TextComponentString(TextFormatting.GRAY + "X: " + TextFormatting.GOLD + x));
tooltip.add(new TextComponentString(TextFormatting.GRAY + "Y: " + TextFormatting.GOLD + y));
tooltip.add(new TextComponentString(TextFormatting.GRAY + "Z: " + TextFormatting.GOLD + z));
tooltip.add(new TextComponentString(TextFormatting.DARK_GRAY + DimensionManager.getProviderType(dim).getName());
tooltip.add(new TextComponentString(TextFormatting.DARK_GRAY + DimensionManager.getProviderType(dim).getName()));
} else {
tooltip.add(new TextComponentString(TextFormatting.GRAY + I18n.format("techreborn.message.noCoordsSet")));

View file

@ -30,8 +30,6 @@ import net.minecraft.item.ItemStack;
import net.minecraft.util.EnumFacing;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
import reborncore.api.IToolHandler;
import techreborn.TechReborn;
@ -44,12 +42,6 @@ public class ItemWrench extends Item implements IToolHandler {
super(new Item.Properties().group(TechReborn.ITEMGROUP).maxStackSize(1));
}
@Override
@OnlyIn(Dist.CLIENT)
public boolean isFull3D() {
return true;
}
@Override
public boolean handleTool(ItemStack stack, BlockPos pos, World world, EntityPlayer player, EnumFacing side, boolean damage) {
if (damage) {