Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 06/30/19 in all areas

  1. Regarding your problem, use the posX, posY, posZ double variables instead, from the entity class, this I believe will give you the exact position.
    1 point
  2. I did not ask about the launcher, but regardless almost every time someone has an issue with libraries not downloading it's an issue of Java version. Update to the latest version of Java 8.
    1 point
  3. https://github.com/Anime-Quatroctus/Blockstate-Generator
    1 point
  4. Damage indicators has a bug. Make sure you have the latest version. If you do, report the error to the mod author.
    1 point
  5. Don't do this. You're passing in null as the thing thats meant to do the model lookup that you call in the next line. use Minecraft#getBlockRendererDispatcher()
    1 point
  6. Not at this time due to an error on Mojang's end
    1 point
  7. I finally figured out the problem - When registering the TileEntity, I needed to include the block it was connected to. @Mod.EventBusSubscriber( bus = Mod.EventBusSubscriber.Bus.MOD ) public class RegistryEventHandler { @SubscribeEvent public static void onTileEntityRegistry( final RegistryEvent.Register< TileEntityType< ? > > event ) { final IForgeRegistry< TileEntityType< ? > > registry = event.getRegistry(); registry.register( TileEntityType.Builder.create( TileEntityLocker::new, BetterStorageBlocks.LOCKER ).build( null ).setRegistryName( ModInfo.MOD_ID, "locker" ) ); // /\- Need list of blocks that use this TileEntity } }
    1 point
  8. Sorry, my last message I had skipped back in the conversation a bit. Have you tried without erebus?
    1 point
  9. Did you click the button that says "Reveal hidden contents"?
    1 point
  10. No, but because this was a proper error that happened in a mod that did one thing properly it was logged with enough info. Make sure you're running the latest version of Erebus and if you are, report it to the author. In addition, because this is the wrong log I can't check but make sure you only get mods from CurseForge (linked in my signature) or mod authors official sites. I'd recommend the StopModReposts browser extension(also linked in my signature) as it will alert you if you visit a blacklisted site.
    1 point
  11. I put this information in my signature in hopes that people would read it so they don't have to ask that question.
    1 point
  12. How about the section that tells you what log to post and how to post it?
    1 point
  13. Please read the "Logs" section of my signature below and provide the appropriate log in the appropriate manner.
    1 point
×
×
  • Create New...

Important Information

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