File tree Expand file tree Collapse file tree 4 files changed +12
-4
lines changed
src/main/java/com/cleanroommc/scalar Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ plugins {
77 id ' maven-publish'
88 id ' org.jetbrains.gradle.plugin.idea-ext' version ' 1.1.10'
99 id ' org.jetbrains.changelog' version ' 2.2.1'
10- id ' xyz.wagyourtail.unimined' version ' 1.3.14 '
10+ id ' xyz.wagyourtail.unimined' version ' 1.4.1 '
1111}
1212
1313apply from : ' gradle/scripts/helpers.gradle'
@@ -66,7 +66,7 @@ unimined.minecraft {
6666 if (propertyBool(' use_access_transformer' )) {
6767 accessTransformer ' src/main/resources/META-INF/' + propertyString(' access_transformer_locations' )
6868 }
69- loader " 0.3.0 -alpha"
69+ loader " 0.3.13 -alpha"
7070 runs. config(" client" ) {
7171 jvmArgs extra_jvm_args
7272 }
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ show_testing_output = false
1111
1212# Mod Information
1313# HIGHLY RECOMMEND complying with SemVer for mod_version: https://semver.org/
14- mod_version = 3.6.4
14+ mod_version = 3.7.2
1515root_package = com.cleanroommc
1616mod_id = scalar
1717mod_name = Scalar
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-8.13 -bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-9.0.0 -bin.zip
44networkTimeout =10000
55validateDistributionUrl =true
66zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change 11package com .cleanroommc .scalar ;
22
3+ import com .google .common .eventbus .EventBus ;
34import net .minecraftforge .fml .common .DummyModContainer ;
5+ import net .minecraftforge .fml .common .LoadController ;
46import net .minecraftforge .fml .common .ModMetadata ;
57
68public class ScalarModContainer extends DummyModContainer {
@@ -11,4 +13,10 @@ public ScalarModContainer() {
1113 name = "Scalar" ;
1214 }});
1315 }
16+
17+ @ Override
18+ public boolean registerBus (EventBus bus , LoadController controller ) {
19+ return true ;
20+ }
21+
1422}
You can’t perform that action at this time.
0 commit comments