Skip to content

Commit

Permalink
[v2.5.0+1.20] fix some bugs (#63)
Browse files Browse the repository at this point in the history
* disable quickshulker's bundling feature

* add game version 1.20.1

* bump version
  • Loading branch information
Aton-Kish committed Aug 20, 2023
1 parent 122cab9 commit 85269d7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ curseforge {
addGameVersion "Fabric"
addGameVersion "Java 17"
addGameVersion "1.20"
addGameVersion "1.20.1"

relations {
requiredDependency "fabric-api"
Expand All @@ -174,7 +175,7 @@ modrinth {
versionType = "release"
changelog = "[v${project.version}](https://github.com/Aton-Kish/reinforced-shulker-boxes/releases/tag/v" + java.net.URLEncoder.encode(project.version, "UTF-8") + ")"

gameVersions = ["1.20"]
gameVersions = ["1.20", "1.20.1"]
loaders = ["fabric"]

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ org.gradle.parallel=true
loader_version=0.14.22

# Mod Properties
mod_version=2.4.1+1.20
mod_version=2.5.0+1.20
mod_id=reinfshulker
maven_group=atonkish.reinfshulker
archives_base_name=reinforced-shulker-boxes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ public class QuickShulker implements RegisterQuickShulker {
public void registerProviders() {
new QuickOpenableRegistry.Builder()
.setItem(ReinforcedShulkerBoxBlock.class)
.supportsBundleing(true)
// TODO: re-enable the bundling feature
// if https://github.com/kyrptonaught/shulkerutils/pull/1 is merged.
.supportsBundleing(false)
.setOpenAction(REINFORCED_SHULKER_BOX_CONSUMER)
.register();
}
Expand Down

0 comments on commit 85269d7

Please sign in to comment.