Skip to content

Commit

Permalink
Change Silicone Caulk Bucket recipe from Water Bucket && Quartz to Wa…
Browse files Browse the repository at this point in the history
…ter Bucket && Amethyst Shard

Remove unused import statements from MinestuckCombinationsProvider
  • Loading branch information
akisephila committed Apr 20, 2024
1 parent 2de964b commit 2e7f7c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"item": "minecraft:water_bucket"
},
"input2": {
"item": "minecraft:quartz"
"item": "minecraft:amethyst_shard"
},
"mode": "and",
"output": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,8 @@
import com.mraof.minestuck.block.MSBlocks;
import com.mraof.minestuck.block.SkaiaBlocks;
import com.mraof.minestuck.item.MSItems;
import com.mraof.minestuck.util.ExtraForgeTags;
import com.mraof.minestuck.util.MSTags;
import net.minecraft.data.recipes.FinishedRecipe;
import net.minecraft.tags.BlockTags;
import net.minecraft.tags.ItemTags;
import net.minecraft.world.item.DyeColor;
import net.minecraft.world.item.Item;
Expand Down Expand Up @@ -912,7 +910,7 @@ public static void buildRecipes(Consumer<FinishedRecipe> consumer)
CombinationRecipeBuilder.of(MSItems.WATER_COLORS_BUCKET.get()).input(Items.WATER_BUCKET).and().input(Tags.Items.DYES).build(consumer);
CombinationRecipeBuilder.of(MSItems.ENDER_BUCKET.get()).input(Items.LAVA_BUCKET).and().input(Items.ENDER_PEARL).build(consumer);
CombinationRecipeBuilder.of(MSItems.LIGHT_WATER_BUCKET.get()).input(Items.WATER_BUCKET).and().input(Items.GLOWSTONE_DUST).build(consumer);
CombinationRecipeBuilder.of(MSItems.CAULK_BUCKET.get()).input(Items.WATER_BUCKET).and().input(Items.QUARTZ).build(consumer);
CombinationRecipeBuilder.of(MSItems.CAULK_BUCKET.get()).input(Items.WATER_BUCKET).and().input(Items.AMETHYST_SHARD).build(consumer);
CombinationRecipeBuilder.of(MSItems.MOLTEN_AMBER_BUCKET.get()).input(Items.LAVA_BUCKET).and().input(Items.HONEY_BOTTLE).build(consumer);

CombinationRecipeBuilder.of(MSItems.UNKNOWABLE_EGG.get()).input(MSItems.SURPRISE_EMBRYO.get()).or().input(MSItems.GRIMOIRE.get()).build(consumer);
Expand Down

0 comments on commit 2e7f7c1

Please sign in to comment.