[TEXTURES] Manual update
This commit is contained in:
parent
2a12cb1ad2
commit
b68647ffa0
5 changed files with 9 additions and 6 deletions
|
@ -1,5 +1,7 @@
|
|||
package techreborn.items.tools;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import me.modmuss50.jsonDestroyer.api.ITexturedItem;
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.block.state.IBlockState;
|
||||
|
@ -8,7 +10,8 @@ import net.minecraft.entity.EntityLivingBase;
|
|||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.init.Items;
|
||||
import net.minecraft.item.Item;
|
||||
import net.minecraft.item.ItemPickaxe;
|
||||
import net.minecraft.item.Item.ToolMaterial;
|
||||
import net.minecraft.item.ItemAxe;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.util.BlockPos;
|
||||
import net.minecraft.util.EnumFacing;
|
||||
|
@ -22,8 +25,6 @@ import reborncore.common.util.TorchHelper;
|
|||
import techreborn.client.TechRebornCreativeTab;
|
||||
import techreborn.config.ConfigTechReborn;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class ItemAdvancedChainsaw extends ItemAxe implements IEnergyItemInfo, ITexturedItem {
|
||||
|
||||
public int maxCharge = ConfigTechReborn.AdvancedChainsawCharge;
|
||||
|
|
|
@ -1,14 +1,16 @@
|
|||
package techreborn.items.tools;
|
||||
|
||||
import me.modmuss50.jsonDestroyer.api.ITexturedItem;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.world.World;
|
||||
import techreborn.Core;
|
||||
import techreborn.client.GuiHandler;
|
||||
import techreborn.client.TechRebornCreativeTab;
|
||||
import techreborn.items.ItemTR;
|
||||
import techreborn.items.ItemTextureBase;
|
||||
|
||||
public class ItemTechManual extends ItemTextureBase {
|
||||
public class ItemTechManual extends ItemTR implements ITexturedItem {
|
||||
|
||||
public ItemTechManual() {
|
||||
setCreativeTab(TechRebornCreativeTab.instance);
|
||||
|
@ -31,7 +33,7 @@ public class ItemTechManual extends ItemTextureBase {
|
|||
|
||||
@Override
|
||||
public String getTextureName(int damage) {
|
||||
return "mineacraft:book";
|
||||
return "techreborn:items/tool/manual";
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -638,7 +638,7 @@ item.bucketwolframium.name=Wolframium Bucket
|
|||
|
||||
#Items
|
||||
item.techreborn.uuMatter.name=UU-Matter
|
||||
item.techreborn.manual.name=Tech manual
|
||||
item.techreborn.manual.name=Tech Manual
|
||||
|
||||
#Configs
|
||||
config.techreborn.allow.galenaOre=Allow Galena Ore
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 571 B |
Binary file not shown.
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 15 KiB |
Loading…
Reference in a new issue