Skip to content

Commit

Permalink
fix: 🐛 Fix copper backpack interaction with cauldron and dispenser to…
Browse files Browse the repository at this point in the history
… be able to clear its color and have it placed by dispenser
  • Loading branch information
P3pp3rF1y committed Mar 4, 2024
1 parent 4382aec commit afda9ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ org.gradle.daemon=false

mod_id=sophisticatedbackpacks
mod_group_id=sophisticatedbackpacks
mod_version=3.20.1
mod_version=3.20.2
sonar_project_key=sophisticatedbackpacks:SophisticatedBackpacks
github_package_url=https://maven.pkg.github.com/P3pp3rF1y/SophisticatedBackpacks

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -433,6 +433,7 @@ public static void registerContainers(RegisterEvent event) {

public static void registerDispenseBehavior() {
DispenserBlock.registerBehavior(BACKPACK.get(), new BackpackDispenseBehavior());
DispenserBlock.registerBehavior(COPPER_BACKPACK.get(), new BackpackDispenseBehavior());
DispenserBlock.registerBehavior(IRON_BACKPACK.get(), new BackpackDispenseBehavior());
DispenserBlock.registerBehavior(GOLD_BACKPACK.get(), new BackpackDispenseBehavior());
DispenserBlock.registerBehavior(DIAMOND_BACKPACK.get(), new BackpackDispenseBehavior());
Expand All @@ -441,6 +442,7 @@ public static void registerDispenseBehavior() {

public static void registerCauldronInteractions() {
CauldronInteraction.WATER.put(BACKPACK.get(), new BackpackCauldronInteraction());
CauldronInteraction.WATER.put(COPPER_BACKPACK.get(), new BackpackCauldronInteraction());
CauldronInteraction.WATER.put(IRON_BACKPACK.get(), new BackpackCauldronInteraction());
CauldronInteraction.WATER.put(GOLD_BACKPACK.get(), new BackpackCauldronInteraction());
CauldronInteraction.WATER.put(DIAMOND_BACKPACK.get(), new BackpackCauldronInteraction());
Expand Down

0 comments on commit afda9ec

Please sign in to comment.