Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/31/24 in all areas

  1. 1 point
  2. 1 point
  3. Same thing, though I did remove Optifine and its working now
    1 point
  4. Okay so, I turned Destroy back on in the server and game, and now it works again for some reason? Whatever the case, it seems solved now so, thank you.
    1 point
  5. It just runs into an issue or conflict with another mod Maybe the xaero mods or embeddium/oculus
    1 point
  6. You need to override the burn time of the corresponding BlockItem, like with this code to register a block that can be used as fuel: private static <T extends Block> RegistryObject<Item> registerFuelBlockItem(String name, RegistryObject<T> block, int burnTime) { return ModItems.ITEMS.register(name, () -> new BlockItem(block.get(), new Item.Properties()) { @Override public int getBurnTime(ItemStack itemStack, @Nullable RecipeType<?> recipeType) { return burnTime; } }); }
    1 point
×
×
  • Create New...

Important Information

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