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.

Democretes

Members
  • Joined

  • Last visited

Everything posted by Democretes

  1. I feared as much. I went and fixed some of it, but I'm surrently stuck on this little bit of code. At } else if ((next instanceof ArrayList)) {for (ItemStack item : (ArrayList)next) {match = (match) || (checkItemEquals(item, slot)); I get an error: Type mismatch: cannot convert from element type Object to ItemStack. public ItemStack getCraftingResult(InventoryCrafting var1) { return this.output.copy(); } public boolean matches(InventoryCrafting var1, World world) { ArrayList required = new ArrayList(this.input); for (int x = 0; x < var1.getSizeInventory(); x++) { ItemStack slot = var1.getStackInSlot(x); if (slot != null) { boolean inRecipe = false; Iterator req = required.iterator(); while (req.hasNext()) { boolean match = false; Object next = req.next(); if ((next instanceof ItemStack)) { match = checkItemEquals((ItemStack)next, slot); } else if ((next instanceof ArrayList)) { for (ItemStack item : (ArrayList)next) { match = (match) || (checkItemEquals(item, slot)); } } if (match) { inRecipe = true; required.remove(next); break; } } if (!inRecipe) { return false; } } } return required.isEmpty();
  2. I've decompiled Thaumcraft into my workspace to find out how warded jars store essentia. Of course, after decompiling I get a series of errors making my Thaumcraft unable to run in the workspace. I'm using Bearded-Octo-Nemesis to deobfuscate then jd-gui to decompile in to a source .zip which I then place into a Thaumcraft project. Is there a way to do this that doesn't give errors or am I just doing something wrong?

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.