Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
kyrptonaught committed Mar 11, 2024
1 parent 781f084 commit 374a91d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
6 changes: 2 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,7 @@ dependencies {
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
modImplementation("net.fabricmc.fabric-api:fabric-api:${project.fabric_version}") {
exclude group: "net.fabricmc.fabric-api", module: "fabric-gametest-api-v1"
}
modImplementation("net.fabricmc.fabric-api:fabric-api:${project.fabric_version}")

//SGui
modImplementation include("eu.pb4:sgui:1.4.1+1.20.4") { exclude group: "net.fabricmc.fabric-api" }
Expand Down Expand Up @@ -62,7 +60,7 @@ dependencies {
modImplementation include("ru.pinkgoosik:nota:0.2.0-lem-v1-1.20.1") { exclude group: "net.fabricmc.fabric-api" }

//Discord Bridge
shadow implementation("net.dv8tion:JDA:5.0.0-beta.20") { exclude module: 'opus-java' }
shadow implementation("net.dv8tion:JDA:5.0.0-beta.21") { exclude module: 'opus-java' }

//Javalin
shadow implementation("io.javalin:javalin:6.1.3")
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ loader_version=0.15.7
fabric_version=0.96.4+1.20.4

# Mod Properties
mod_version=1.0.810-1.20.4
mod_version=1.0.8b11-1.20.4
maven_group=net.kyrptonaught
archives_base_name=ServerUtils

Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,9 @@ private static ScreenConfig.SlotDefinition getSlotDefinition(ScreenConfig.SlotDe
return slotDefinition;
}

private static ScreenConfig.SlotDefinition copyFromPreset(ScreenConfig.SlotDefinition slotDefinition){
private static void copyFromPreset(ScreenConfig.SlotDefinition slotDefinition) {
if (slotDefinition.presetID != null)
slotDefinition.copyFrom(slotPresets.get(slotDefinition.presetID));

return slotDefinition;
}

private static List<Integer> expandSlotString(String slot) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"schemaVersion": 1,
"id": "serverutils",
"version": "1.0.8b10-1.20.4",
"version": "1.0.8b11-1.20.4",
"name": "Server Utils",
"description": "A group of utilities for servers",
"authors": [
Expand Down

0 comments on commit 374a91d

Please sign in to comment.