Skip to content

Commit

Permalink
Set crafting remainder of water bowl to bowl
Browse files Browse the repository at this point in the history
Closes #4508
  • Loading branch information
williewillus committed Dec 14, 2023
1 parent 09eb414 commit 58b0d79
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,7 @@
import net.minecraft.world.effect.MobEffects;
import net.minecraft.world.food.FoodProperties;
import net.minecraft.world.inventory.MenuType;
import net.minecraft.world.item.ArmorItem;
import net.minecraft.world.item.DyeColor;
import net.minecraft.world.item.Item;
import net.minecraft.world.item.Rarity;
import net.minecraft.world.item.*;
import net.minecraft.world.item.crafting.RecipeSerializer;

import vazkii.botania.api.block.FloatingFlower;
Expand Down Expand Up @@ -253,7 +250,7 @@ public final class BotaniaItems {
public static final Item flowerBag = make(prefix(LibItemNames.FLOWER_BAG), new FlowerPouchItem(unstackable()));
public static final Item blackHoleTalisman = make(prefix(LibItemNames.BLACK_HOLE_TALISMAN), new BlackHoleTalismanItem(unstackable()));
public static final Item temperanceStone = make(prefix(LibItemNames.TEMPERANCE_STONE), new StoneOfTemperanceItem(unstackable()));
public static final Item waterBowl = make(prefix(LibItemNames.WATER_BOWL), new WaterBowlItem(unstackable()));
public static final Item waterBowl = make(prefix(LibItemNames.WATER_BOWL), new WaterBowlItem(unstackable().craftRemainder(Items.BOWL)));
public static final Item cacophonium = make(prefix(LibItemNames.CACOPHONIUM), new CacophoniumItem(unstackable()));
public static final Item slimeBottle = make(prefix(LibItemNames.SLIME_BOTTLE), new SlimeInABottleItem(unstackable()));
public static final Item sextant = make(prefix(LibItemNames.SEXTANT), new WorldshaperssSextantItem(unstackable()));
Expand Down

0 comments on commit 58b0d79

Please sign in to comment.