File tree Expand file tree Collapse file tree 4 files changed +11
-5
lines changed
src/main/java/dev/ftb/ftbsbc/tools/content/autohammer Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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 "
121121def mavenVersion = project. version
122122if (ENV . SNAPSHOT != null && ENV . SNAPSHOT == " true" ) {
123- ftbURL = " https://maven.ftb.dev/snapshot "
123+ ftbURL = " https://maven.ftb.dev/snapshots "
124124 mavenVersion + = " -SNAPSHOT"
125125}
126126publishing {
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ loom.platform=forge
44minecraft_version =1.18.2
55forge_version =1.18.2-40.1.84
66
7- mod_version =0.6.8
7+ mod_version =1.0.0
88maven_group =dev.ftb.mods
99archives_base_name =ftb-stoneblock-companion
1010mod_id =ftbsbc
Original file line number Diff line number Diff 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 );
You can’t perform that action at this time.
0 commit comments