Skip to content

Commit 8b875ac

Browse files
Added Majority of logic
1 parent dec9586 commit 8b875ac

File tree

16 files changed

+356
-379
lines changed

16 files changed

+356
-379
lines changed

build.gradle

Lines changed: 27 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -21,28 +21,36 @@ repositories {
2121
name = "Gegy"
2222
url = uri("https://maven.gegy.dev")
2323
}
24+
25+
maven {
26+
name = "Terraformers"
27+
url = "https://maven.terraformersmc.com/"
28+
}
2429
}
2530

2631
dependencies {
27-
// To change the versions see the gradle.properties file
28-
minecraft "com.mojang:minecraft:${project.minecraft_version}"
29-
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
30-
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
32+
minecraft "com.mojang:minecraft:${project.minecraft_version}"
33+
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
3134

32-
// Fabric API. This is technically optional, but you probably want it anyway.
33-
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
34-
35-
include(modImplementation("dev.lambdaurora:spruceui:${project.spruceui_version}"))
36-
include("dev.yumi.mc.core:yumi-mc-foundation:1.0.0-alpha.5+1.21.1")
37-
35+
modImplementation("net.fabricmc:fabric-loader:${project.loader_version}")
36+
modImplementation("net.fabricmc.fabric-api:fabric-api:${project.fabric_version}")
37+
38+
include(modImplementation("dev.lambdaurora:spruceui:${project.spruceui_version}"))
39+
include(modImplementation("dev.yumi.mc.core:yumi-mc-foundation:1.0.0-alpha.6+1.21.1"))
40+
41+
modImplementation("com.terraformersmc:modmenu:${project.modmenu_version}")
3842
}
3943

44+
45+
46+
47+
4048
processResources {
41-
inputs.property "version", project.version
49+
inputs.property "version", project.version
4250

43-
filesMatching("fabric.mod.json") {
44-
expand "version": inputs.properties.version
45-
}
51+
filesMatching("fabric.mod.json") {
52+
expand "version": project.version
53+
}
4654
}
4755

4856
tasks.withType(JavaCompile).configureEach {
@@ -79,5 +87,10 @@ publishing {
7987
name = "Gegy"
8088
url = uri("https://maven.gegy.dev")
8189
}
90+
91+
maven {
92+
name = "Terraformers"
93+
url = "https://maven.terraformersmc.com/"
94+
}
8295
}
8396
}

gradle.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@ archives_base_name=streamermodeplusplus
1616

1717
# Dependencies
1818
fabric_version=0.130.0+1.21.8
19-
spruceui_version=8.0.2+1.21.8
19+
spruceui_version=8.0.2+1.21.8
20+
modmenu_version=15.0.0-beta.3

src/main/java/com/magnet/streamermodeplusplus/EventBus/EventSubscribe.java

Lines changed: 0 additions & 10 deletions
This file was deleted.

src/main/java/com/magnet/streamermodeplusplus/EventBus/EventSubscriber.java

Lines changed: 0 additions & 92 deletions
This file was deleted.

src/main/java/com/magnet/streamermodeplusplus/EventBus/ModEventBus.java

Lines changed: 0 additions & 35 deletions
This file was deleted.

src/main/java/com/magnet/streamermodeplusplus/EventBus/handler/EventHandler.java

Lines changed: 0 additions & 22 deletions
This file was deleted.

src/main/java/com/magnet/streamermodeplusplus/EventBus/handler/ExactEventHandler.java

Lines changed: 0 additions & 67 deletions
This file was deleted.

src/main/java/com/magnet/streamermodeplusplus/EventBus/handler/InexactEventHandler.java

Lines changed: 0 additions & 68 deletions
This file was deleted.

src/main/java/com/magnet/streamermodeplusplus/Events/Event.java

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)