Skip to content

Commit

Permalink
Register fuel #102
Browse files Browse the repository at this point in the history
  • Loading branch information
PTOM76 committed Sep 28, 2024
1 parent db9dfe6 commit 5e1c867
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
8 changes: 1 addition & 7 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,4 @@ mcpitanlib_checker_version=1.0.4
rei_version = 8.4.765

changelog = Fix bugs \
add Default EMC value \
Connect EMC Repeater/EMC Importer/EMC Exporter with EMC Cable \
Add Up/Down model to cable \
Add Config \
Add SidedInventory to AEGU \
Alchemy Table can be placed on the wall \
Fix clone item on EMC Condenser
Register fuels
4 changes: 3 additions & 1 deletion src/main/java/net/pitan76/itemalchemy/ItemAlchemy.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ public void init() {
// Registry commands
CommandRegistry.register("itemalchemy", new ItemAlchemyCommand());

//FuelRegistry.register(Items.ALCHEMICAL_FUEL, 200);
registry.registerFuel(() -> Items.ALCHEMICAL_FUEL.getOrNull(), 200 * 16);
registry.registerFuel(() -> Items.MOBIUS_FUEL.getOrNull(), 200 * 64);
registry.registerFuel(() -> Items.AETERNALIS_FUEL.getOrNull(), 200 * 128);
}

@Override
Expand Down

0 comments on commit 5e1c867

Please sign in to comment.