Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.21 #6

Merged
merged 8 commits into from
Jun 14, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update to 1.21 pre release 2
  • Loading branch information
orifu committed Jun 5, 2024
commit bb6caed461d4ed8d80a1b726f3d8e4686b6c1ec2
2 changes: 0 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -11,8 +11,6 @@ repositories {
maven { url = "https://maven.quiltmc.org/repository/release/" }
maven { url = "https://maven.terraformersmc.com/releases/" }
maven { url = "https://repo.sleeping.town/" }

flatDir { dirs 'lib' }
}

configurations {
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Done to increase the memory available to gradle.
org.gradle.jvmargs=-Xmx1G

minecraft_version=1.21-pre1
quilt_mappings=1
minecraft_version=1.21-pre2
quilt_mappings=3
loader_version=0.15.11
fabric_version=0.99.4+1.21
modmenu_version=unknown
modmenu_version=11.0.0-beta.1

mod_version = 1.0.4+mc1.21
maven_group = io.ix0rai
4 changes: 2 additions & 2 deletions src/main/java/io/ix0rai/ramel/client/RamelConfigScreen.java
Original file line number Diff line number Diff line change
@@ -26,8 +26,8 @@ public RamelConfigScreen(@Nullable Screen parent) {
@SuppressWarnings("unchecked")
protected void method_60325() { // addOptions
// this.list
assert this.field_51824 != null;
this.field_51824.addEntries(StreamSupport.stream(Config.INSTANCE.values().spliterator(), false)
assert this.field_51824 != null;
this.field_51824.addEntries(StreamSupport.stream(Config.INSTANCE.values().spliterator(), false)
.map(value -> createOptional((TrackedValue<Float>) value)).toArray(Option[]::new));
}