Skip to content

Commit

Permalink
Good job fapi
Browse files Browse the repository at this point in the history
  • Loading branch information
enjarai committed Aug 28, 2023
1 parent 6028755 commit a6d6736
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
- Added the ability to insert and extract fluids from Floppers manually using buckets.
- Nerfed Flopper capacity to only 1 bucket.
- Removed a vanilla feature allowing buckets to be pulled from the bottom of furnaces, this makes Flopper-based super smelters more viable.
- Fixed a minor issue when other mods try to sidelessly interact with furnaces.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ yarn_mappings=1.20+build.1
loader_version=0.14.21

# Mod Properties
mod_version = 2.2.0
mod_version = 2.2.1
maven_group = nl.enjarai
archives_base_name = omnihopper
modid = omnihopper
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ protected void setFuelStack(ItemStack fuelItem) {

@Override
public @Nullable Storage<FluidVariant> getFluidStorage(Direction side) {
if (side.getAxis().isHorizontal()) {
if (side == null || side.getAxis().isHorizontal()) {
return fluidStorage;
}
return null;
Expand Down

0 comments on commit a6d6736

Please sign in to comment.