Skip to content

Commit

Permalink
Fix creative tab #2
Browse files Browse the repository at this point in the history
  • Loading branch information
PTOM76 committed Dec 13, 2022
1 parent 5a8670b commit ebb03a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/ml/pkom/advancedreborn/Items.java
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public class Items {
// 缶
public static Item EMPTY_CAN = new Item(new ExtendSettings().addGroup(AdvancedReborn.AR_GROUP, AdvancedReborn.id("empty_can")).maxCount(64));
public static Item FUEL_CAN = new FuelCanItem(new ExtendSettings().addGroup(AdvancedReborn.AR_GROUP, AdvancedReborn.id("fuel_can")).maxCount(64).recipeRemainder(EMPTY_CAN));
public static Item FOOD_CAN = new FoodCanItem(new ExtendSettings().addGroup(AdvancedReborn.AR_GROUP, AdvancedReborn.id("empty_can")).maxCount(64).recipeRemainder(EMPTY_CAN).food(new FoodComponent.Builder().snack().hunger(2).saturationModifier(2).build()));
public static Item FOOD_CAN = new FoodCanItem(new ExtendSettings().addGroup(AdvancedReborn.AR_GROUP, AdvancedReborn.id("food_can")).maxCount(64).recipeRemainder(EMPTY_CAN).food(new FoodComponent.Builder().snack().hunger(2).saturationModifier(2).build()));

// Better Batpack
public static Item BATPACK_4 = new BetterBatpackItem(TechRebornConfig.lithiumBatpackCharge * 4, new BBArmorMaterial("batpack4"), RcEnergyTier.MEDIUM);
Expand Down

0 comments on commit ebb03a1

Please sign in to comment.