Skip to content

Commit 6d0fb46

Browse files
feat: bumped to stable release and fixed FTBTeam/FTB-Modpack-Issues#2665
1 parent f39be70 commit 6d0fb46

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [1.0.0]
4+
5+
### Fixed
6+
7+
- Auto-Hammer voiding items that have large output sizes like compressed blocks [#2665](https://github.com/FTBTeam/FTB-Modpack-Issues/issues/2665)
8+
39
## [0.6.7]
410

511
### Fixed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,11 +116,11 @@ if (ENV.CURSEFORGE_KEY) {
116116
}
117117
}
118118

119-
def ftbURL = "https://maven.ftb.dev/release"
120-
def sapsURL = "https://maven.saps.dev/minecraft"
119+
def ftbURL = "https://maven.ftb.dev/releases"
120+
def sapsURL = "https://maven.saps.dev/releases"
121121
def mavenVersion = project.version
122122
if (ENV.SNAPSHOT != null && ENV.SNAPSHOT == "true") {
123-
ftbURL = "https://maven.ftb.dev/snapshot"
123+
ftbURL = "https://maven.ftb.dev/snapshots"
124124
mavenVersion += "-SNAPSHOT"
125125
}
126126
publishing {

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ loom.platform=forge
44
minecraft_version=1.18.2
55
forge_version=1.18.2-40.1.84
66

7-
mod_version=0.6.8
7+
mod_version=1.0.0
88
maven_group=dev.ftb.mods
99
archives_base_name=ftb-stoneblock-companion
1010
mod_id=ftbsbc

src/main/java/dev/ftb/ftbsbc/tools/content/autohammer/AutoHammerBlockEntity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ protected void onContentsChanged(int slot) {
5656
}
5757
};
5858

59-
private final AutoHammerOutputItemHandler outputInventory = new AutoHammerOutputItemHandler(this, 8);
59+
private final AutoHammerOutputItemHandler outputInventory = new AutoHammerOutputItemHandler(this, 12);
6060

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

0 commit comments

Comments
 (0)