Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

warjort

Members
  • Joined

  • Last visited

Everything posted by warjort

  1. Any command line your operating system provides should work as long as you have java on it's path. NOTE: You need the jdk (java development kit) version of java instead of just the normal jre (java runtime environment).
  2. Like I said, it's not something I've tried, but I would say probably not, it depends upon what you are trying to do. Those renderers are not prebacked for a reason. Their rendering depends ad hocly upon the state of the world. You could in principle call them with your own dummy consumers to capture the quads, but those quads could (likely will) be invalid once the state of the world changes. This includes time where the rendering is animated.
  3. Post a link to your full debug.log Also confirm the mod file actually ends with .jar and not .jar.zip or something.
  4. I think you are on your own with this stuff. Even if your intentions are innocent, these are the same questions that somebody would ask when writing a bot. And we don't support writing cheats in this forum.
  5. Issue with your graphics driver. See this thread for a possible fix: https://forums.minecraftforge.net/topic/117925-forge-1192-43147-crashing-on-startup-with-exit-code-1/#comment-519007
  6. There is no error in that log. If it is the complete log, post your launcher_log.txt NOTE: don't restart the launcher after the crash otherwise you will clear the log and we won't see the error.
  7. Sounds like some code is looping during the server shutdown? You can use a tool like jstack to get a thread dump to see where it is stuck. https://www.baeldung.com/java-thread-dump
  8. BlockRenderDispatcher.renderLiquid()
  9. They don't use baked models. See for example BedRenderer. The only thing they define in their models is the block break particle 🙂 https://github.com/misode/mcmeta/blob/assets/assets/minecraft/models/block/bed.json I've never tried to do it, but I guess If you want to draw something with a BlockEntityRenderer then you need to use the BlockEntityRendererDispatcher BlockEntityWithoutLevelRenderer kind of does this, but it does it to draw them as items.
  10. One of your config files is invalid/corrupted. If you don't have a backup of this file, you can delete it and it will be recreated with default files.
  11. https://github.com/sp614x/optifine/issues/7127
  12. Like it says, your account doesn't have the operating system permissions to open that file. You probably installed it as adminstrator and are now trying to run the program with normal user permissions? You need to give your account the correct permission to that file (and probably others including the folders that contains them).
  13. This is a crash in your graphics driver. Check you have the up-to-date version. If you do have the latest version, sometimes downgrading to a previous version can fix problems with newly introduced bugs by the manufacturer. Otherwise, you will need to talk to nvidia.
  14. Your original (wrong) log shows you using a legitimate account. The second log shows you using a cracked client/launcher which isn't supported in this forum.
  15. https://github.com/Asek3/Oculus/issues/187
  16. If you look at StructureTemplateManager.loadFromResource() it adds structures/ on the front and .nbt on the end of the ResourceLocation's path. So for the 2 apis I think your ResourceLocation should be either ResourceManager xolcore:structures/test_schem.nbt StructureTemplateManager xolcore:test_schem
  17. You need to show exactly what you are doing. All we have is a random code snippet that shows none of the relevant information. i.e. what the ResourceLocation actually is and what your file strcuture looks like.
  18. If it works on the client side that means the file must be in the assets folder? i.e. part of the resource pack. Structures should be in the data folder, the data pack.
  19. Post the debug.log That log is incomplete, e.g.
  20. Looks like an issue with the controllable mod. From the context of what it is doing, I would guess it is some issue with the configuration file? Check you have the latest version then contact the mod author to ask how to fix it.
  21. Please put your logs on a file sharing site. Don't post them directly into the forum. They are impossible to search, especially when there are many posts. Looks like you have a mod that is for 1.18 or before that has mixed into one of Minecraft's classes and broken it? If you posted a link to the debug.log it might have some clue about which mod.
  22. Conflict between whisperwoods and betteranimalsplus. Check you have the latest versions then contact the mod authors.
  23. Your posted code works for me. (Tested with 1.18.2) The original code you posted didn't have the subscribe annotations. So, it wasn't the real code. Probably still isn't?
  24. Doing it that way means you are creating a new array every time you call get() You can use Supplier<Block>. RegistryObject extends Supplier. And you create the list statically as long as you aren't calling get on the RegistryObjects until runtime. Something like: static final RegistryObject<Block> ONE = ...; static final RegistryObject<Block> TWO = ...; static final List<Supplier<Block>> BLOCK_LIST = List.of(ONE, TWO, () -> Blocks.STONE);

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.