Skip to content

Commit

Permalink
update to 1.21.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ix0rai committed Aug 8, 2024
1 parent 76ccd98 commit a7f23c7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Done to increase the memory available to gradle.
org.gradle.jvmargs=-Xmx1G

minecraft_version=1.21
quilt_mappings=1
minecraft_version=1.21.1
quilt_mappings=2
loader_version=0.15.11
fabric_version=0.100.1+1.21
modmenu_version=11.0.0-beta.1
fabric_version=0.102.0+1.21.1
modmenu_version=11.0.1

mod_version = 1.0.4+mc1.21
mod_version = 1.0.4+mc1.21.1
maven_group = io.ix0rai
archives_base_name = ramel
6 changes: 3 additions & 3 deletions src/main/java/io/ix0rai/ramel/client/RamelConfigScreen.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ public RamelConfigScreen(@Nullable Screen parent) {

@Override
@SuppressWarnings("unchecked")
protected void method_60325() { // addOptions
protected void initOptionButtons() {
// this.list
assert this.field_51824 != null;
this.field_51824.addEntries(StreamSupport.stream(Config.INSTANCE.values().spliterator(), false)
assert this.buttonList != null;
this.buttonList.addEntries(StreamSupport.stream(Config.INSTANCE.values().spliterator(), false)
.map(value -> createOptional((TrackedValue<Float>) value)).toArray(Option[]::new));
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

"depends": {
"fabricloader": ">=0.15.11",
"minecraft": ">=1.21-"
"minecraft": ">=1.21"
},

"custom": {
Expand Down

0 comments on commit a7f23c7

Please sign in to comment.