Skip to content

Commit

Permalink
feat: bumped to stable release and fixed FTBTeam/FTB-Modpack-Issues#2665
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelHillcox committed Jun 18, 2024
1 parent f39be70 commit 6d0fb46
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [1.0.0]

### Fixed

- Auto-Hammer voiding items that have large output sizes like compressed blocks [#2665](https://github.com/FTBTeam/FTB-Modpack-Issues/issues/2665)

## [0.6.7]

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -116,11 +116,11 @@ if (ENV.CURSEFORGE_KEY) {
}
}

def ftbURL = "https://maven.ftb.dev/release"
def sapsURL = "https://maven.saps.dev/minecraft"
def ftbURL = "https://maven.ftb.dev/releases"
def sapsURL = "https://maven.saps.dev/releases"
def mavenVersion = project.version
if (ENV.SNAPSHOT != null && ENV.SNAPSHOT == "true") {
ftbURL = "https://maven.ftb.dev/snapshot"
ftbURL = "https://maven.ftb.dev/snapshots"
mavenVersion += "-SNAPSHOT"
}
publishing {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ loom.platform=forge
minecraft_version=1.18.2
forge_version=1.18.2-40.1.84

mod_version=0.6.8
mod_version=1.0.0
maven_group=dev.ftb.mods
archives_base_name=ftb-stoneblock-companion
mod_id=ftbsbc
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ protected void onContentsChanged(int slot) {
}
};

private final AutoHammerOutputItemHandler outputInventory = new AutoHammerOutputItemHandler(this, 8);
private final AutoHammerOutputItemHandler outputInventory = new AutoHammerOutputItemHandler(this, 12);

private final LazyOptional<ItemStackHandler> inputInvLazy = LazyOptional.of(() -> inputInventory);
private final LazyOptional<AutoHammerOutputItemHandler> outputInvLazy = LazyOptional.of(() -> outputInventory);
Expand Down

0 comments on commit 6d0fb46

Please sign in to comment.