Jump to content

[Solved] [1.7.2][Coremod] Unable to load block texture. Non-coremods works fine


msifeed

Recommended Posts

Error:

[21:20:09] [Client thread/ERROR]: Using missing texture, unable to load geck:textures/blocks/concrete.png

Texture path:

forge172\src\main\resources\assets\geck\textures\blocks\concrete.png

 

Don't work even

class B extends Block {
  protected B(Material p_i45394_1_) {
    super(p_i45394_1_);
  } 	
}

@Subscribe
public void preInit(FMLPreInitializationEvent event) {
  Block b = new B(Material.rock).setBlockName("b").setBlockTextureName("geck:concrete").setCreativeTab(CreativeTabs.tabRedstone);
  GameRegistry.registerBlock(b, "b");
}

 

As i said, normal mods work fine with that textures.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.