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. Post a link to the logs/debug.log so we can see the error.
  2. There's an off-by-one in my calculations. ๐Ÿ™‚ The player inventory is slots 0 to 26 since it is 3x9 so everything else needs adjusting by one.
  3. This doesn't really look like a question for this forum. It looks like you copied some random code from other places without understanding what it does. Then when it didn't work, you decided to ask us to fix it for you. We don't write your mod for you. Nor do we provide free code review. Some observations: addPlayerInventory(inv); // slots 0 to 27 are the player inventory addPlayerHotbar(inv); // slots 28 to 36 are the hot bar // slot 37 is the result slot this.addSlot(new ResultSlot(inv.player, this.craftSlots, this.resultSlot, 0, 140, 40)); // Slot 38 is the 0th crafting slot this.addSlot(new Slot(this.craftSlots,0,96,40)); // this is a mess, you have 9 copies of 1 to 9 of the crafting slots so 9 x 9 = 81 or slots 39 to 119 for (int i=1;i<10;i++) { // Might be here for (int j=0;j<37;j+=18) { for (int l=0;l<37;l+=18) { this.addSlot(new Slot(this.craftSlots, i, 16 + l, 22 + j)); } // snip itemstack = itemstack1.copy(); // Here you are treating slot 0 as the result slot, but your result slot is 37 if (_slot == 0) { this.access.execute((level, pos) -> { itemstack1.getItem().onCraftedBy(itemstack1, level, player); }); // Here you are treating slots 10 to 45 as a group, but it doesn't match any group you defined in your constructor if (!this.moveItemStackTo(itemstack1, 10, 46, true)) { return ItemStack.EMPTY; } etc.
  4. Can't say I understand the new way of doing the builtin registries in 1.19.3. ๐Ÿ™‚ But you can always register your features using json files in your src/main/resources/data That's probably the way most likely to be portable across versions? Although, Mojang still describe the new worldgen first introduced in 1.16 as "experimental". The only part that needs to be registered manually is the Feature, because that is code. e.g. vanilla iron ore's configured and placed feature as json https://github.com/misode/mcmeta/blob/data/data/minecraft/worldgen/configured_feature/ore_iron.json https://github.com/misode/mcmeta/blob/data/data/minecraft/worldgen/placed_feature/ore_iron_middle.json
  5. One of your config files is invalid/corrupted. You can find it in the config folder. If you don't have a backup of the file, you can delete it and it should be recreated with default values.
  6. Read the deprecation comment on that method.
  7. You need java 17 for minecraft 1.19
  8. Issue with the better than llamas mod. Check you have the latest version then contact the mod author.
  9. The chipped mod wants the ctm mod installed.
  10. Change your max fps to be larger than 0, either in the options menu or the options.txt
  11. You need to show the logs/debug.log so we can see the error. Or report it to the mod author if you know the mod having the problem.
  12. Mojang changed how items are added to the creative mode screen in 1.19.3 This will require any mod that adds new items to be changed. It will affect most mods. So, make sure your mods say they are compatible with 1.19.3
  13. minecraft 1.19.2 needs java 17
  14. Did your mods say they are compatible with 1.19.3 when you downloaded them?
  15. You are telling it to open the crafting table menu instead of your EggingTableGui? Since your block is not a crafting table block, it will close the gui in its stillValid() check.
  16. Oculus issue: https://github.com/Asek3/Oculus/issues/243
  17. Issue with tipthescales mod. Check you have the latest version then contact the mod author.
  18. The error does not really identify a mod. But it could be flywheel since that modifies the code in this area, or it could be a conflict with optifine? Check you have the latest version of flywheel and try without optifine.
  19. Issue with jeed, check you have the latest version then contact the mod author.
  20. One of your config files is invalid/corrupted. If you don't have a backup of the file, you can delete it and it should be recreated with default values.
  21. You need to post your logs/debug.log so we can see the full error.

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.