Skip to content

Commit

Permalink
fix it fr fr
Browse files Browse the repository at this point in the history
  • Loading branch information
Thepigcat76 committed Feb 17, 2025
1 parent 3ff40e1 commit 023ea32
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ loader_version_range=[4,)
mod_id=nautec
mod_name=NauTec
mod_license=MIT
mod_version=0.2.2
mod_version=0.2.3
mod_group_id=com.portingdeadmods.nautec
mod_authors=Thepigcat76, Leclowndu93150, Ktpatient, Reclipse, Iglee42
mod_description=Mod for the curseforge 2024 modjam
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import com.portingdeadmods.nautec.NTConfig;
import com.portingdeadmods.nautec.api.blockentities.LaserBlockEntity;
import com.portingdeadmods.nautec.capabilities.IOActions;
import com.portingdeadmods.nautec.capabilities.fluid.SidedFluidHandler;
import com.portingdeadmods.nautec.capabilities.fluid.TwoTankSidedFluidHandler;
import com.portingdeadmods.nautec.content.menus.MixerMenu;
import com.portingdeadmods.nautec.content.recipes.MixingRecipe;
Expand Down Expand Up @@ -45,10 +44,10 @@ public class MixerBlockEntity extends LaserBlockEntity implements MenuProvider {
Direction.WEST, Pair.of(IOActions.INSERT, new int[]{0, 1, 2, 3})
);
public static final Map<@NotNull Direction, @NotNull Pair<IOActions, int[]>> FLUID_HANDLER_SIDED_INTERACTIONS = Map.of(
Direction.NORTH, Pair.of(IOActions.INSERT, new int[]{0}),
Direction.EAST, Pair.of(IOActions.INSERT, new int[]{0}),
Direction.SOUTH, Pair.of(IOActions.INSERT, new int[]{0}),
Direction.WEST, Pair.of(IOActions.INSERT, new int[]{0})
Direction.NORTH, Pair.of(IOActions.BOTH, new int[]{0, 1}),
Direction.EAST, Pair.of(IOActions.BOTH, new int[]{0, 1}),
Direction.SOUTH, Pair.of(IOActions.BOTH, new int[]{0, 1}),
Direction.WEST, Pair.of(IOActions.BOTH, new int[]{0, 1})
);
private boolean running;

Expand Down

0 comments on commit 023ea32

Please sign in to comment.