The error reads: 2014-03-17 03:20:30 [SEVERE] [Minecraft-Client] Using missing texture, unable to load: minecraft:textures/blocks/immersivenature;Buglog.png
@Mod(modid = "ImmersiveNature", name = "Immersive Nature", version = "1.00 Alpha")
@NetworkMod(clientSideRequired = true, serverSideRequired = false)
public class ImmersiveNature {
@SidedProxy(clientSide = "bleak.immersivenature.client.ClientProxy", serverSide = "bleak.immersivenature.common.CommonProxy")
public static CommonProxy proxy;
public static Block Buglog = new BlockBuglog(1500, Material.wood).setUnlocalizedName("Buglog");
@Init
public void load(FMLInitializationEvent event) {
proxy.registerRenderInformation();
}
I just started a brand new tekkit classic server. Not whitelisted or anything like that, few plugins, just essentials and factions plugin. We're total anarchy, just don't dupe or mod. The ip is: 71.205.129.198
Hopefully I'll see you there.
Anyone have a anarchy 24/7 server? It can't be too crowded, something to like 5-20 players online a day, I hate those big servers, too much lag. Post ip's down here, here's all my info so you can come stalk me, kthnxbia.
Age: 14
IGN: Bleakhelper
Skype: Theplaner3
AND NU, I DU NUT WUNT TO DATE YE, EVEN IF I BE SMEEXY.Sorz if this is in the wrong topic, I do that a'lot. Topics are for chumps.
0
The error reads:
2014-03-17 03:20:30 [SEVERE] [Minecraft-Client] Using missing texture, unable to load: minecraft:textures/blocks/immersivenature;Buglog.png
My block class code:
package bleak.immersivenature.block;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.creativetab.CreativeTabs;
public class BlockBuglog extends Block {
public BlockBuglog(int par1, Material par2Material) {
super(par1, par2Material);
this.setCreativeTab(CreativeTabs.tabBlock);
this.setLightValue(0F);
this.setHardness(20);
this.setResistance(5);
}
public void registerIcons(IconRegister iconRegister) {
blockIcon = iconRegister.registerIcon("ImmersiveNature;Buglog");
}
}
My mod class code:
package bleak.immersivenature.common;
import bleak.immersivenature.block.BlockBuglog;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.Mod.Init;
import cpw.mods.fml.common.SidedProxy;
import cpw.mods.fml.common.event.FMLInitializationEvent;
import cpw.mods.fml.common.network.NetworkMod;
import cpw.mods.fml.common.registry.GameRegistry;
import cpw.mods.fml.common.registry.LanguageRegistry;
@Mod(modid = "ImmersiveNature", name = "Immersive Nature", version = "1.00 Alpha")
@NetworkMod(clientSideRequired = true, serverSideRequired = false)
public class ImmersiveNature {
@SidedProxy(clientSide = "bleak.immersivenature.client.ClientProxy", serverSide = "bleak.immersivenature.common.CommonProxy")
public static CommonProxy proxy;
public static Block Buglog = new BlockBuglog(1500, Material.wood).setUnlocalizedName("Buglog");
@Init
public void load(FMLInitializationEvent event) {
proxy.registerRenderInformation();
}
public ImmersiveNature() {
GameRegistry.registerBlock(Buglog);
LanguageRegistry.addName(Buglog, "Infested Wood");
}
}
0
Hopefully I'll see you there.
0
Anyone have a anarchy 24/7 server? It can't be too crowded, something to like 5-20 players online a day, I hate those big servers, too much lag. Post ip's down here, here's all my info so you can come stalk me, kthnxbia.
Age: 14
IGN: Bleakhelper
Skype: Theplaner3
AND NU, I DU NUT WUNT TO DATE YE, EVEN IF I BE SMEEXY.Sorz if this is in the wrong topic, I do that a'lot. Topics are for chumps.