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.

Leaderboard

Popular Content

Showing content with the highest reputation on 06/28/20 in all areas

  1. Latest forge? As in 1.16.1?
  2. The forums have been acting oddly, but that's quite an odd result indeed.
  3. Heyo o/ This can be marked as solved, For future people with similar problems, the issue comes from us using model inheritance and having the overrides on the ancestor model. Essentially our GenericSpellBook class gets instantiated for every spell there is in our mod, this means we have to have many different item JSONs, and we wanted to spice them up with textures. In trying to find a good way to do that we tried property overrides. We gave up on this after this post and switched to making our datagens do alot of the grunt work, but I re-visited it and put overrides on the individual JSONs and it worked. Tl;DR Don't do: Item_Model.json { "parent": "mod:item/parent_item" } Parent_Model.json { "parent": "item/generated", "textures": { "layer0": "gramarye:item/book/loot_spellbook" }, "overrides": [ { "predicate": { "gramarye:element": 0, "gramarye:level": 0 }, "model": "gramarye:item/book/spellbook_fire_novice" } ] } Spellbook_fire_novice.json { "parent": "gramarye:item/book/spellbook_base", "textures": { "layer0": "gramarye:item/book/loot_spellbook", "layer1": "gramarye:item/book/fire", "layer2": "gramarye/item/book/novice" } } Do this: Item_Model.json { "parent": "item/book/looted_fire_novice", "overrides": [ { "predicate": { "gramarye:booktype": 1.0 }, "model": "gramarye:item/book/crafted_fire_novice" } ] } crafted_fire_novice.json { "parent": "item/generated", "textures": { "layer0": "gramarye:item/book/crafted_spellbook", "layer1": "gramarye:item/book/fire", "layer2": "gramarye:item/book/novice" } } looted_fire_novice.json "parent": "item/generated", "textures": { "layer0": "gramarye:item/book/loot_spellbook", "layer1": "gramarye:item/book/fire", "layer2": "gramarye:item/book/novice" }

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.