9
0
mirror of https://github.com/WiIIiam278/HuskSync.git synced 2026-01-04 15:31:37 +00:00

deps: bump Uniform to 1.1.4

Fixes namespaced-backed commands being missing
This commit is contained in:
William
2024-06-18 13:02:58 +01:00
parent 6b8bb23af9
commit e29564c4ad
5 changed files with 5 additions and 5 deletions

View File

@@ -18,7 +18,7 @@ dependencies {
modImplementation include("net.kyori:adventure-platform-fabric:${adventure_platform_fabric_version}")
modImplementation include("me.lucko:fabric-permissions-api:${fabric_permissions_api_version}")
modImplementation include("eu.pb4:sgui:${sgui_version}")
modImplementation include('net.william278.uniform:uniform-fabric:1.1.3+1.20.1')
modImplementation include('net.william278.uniform:uniform-fabric:1.1.4+1.20.1')
modCompileOnly "net.fabricmc.fabric-api:fabric-api:${fabric_api_version}"
implementation include('org.apache.commons:commons-pool2:2.12.0')

View File

@@ -257,7 +257,7 @@ public class FabricHuskSync implements DedicatedServerModInitializer, HuskSync,
@Override
@NotNull
public Uniform getUniform() {
return FabricUniform.getInstance();
return FabricUniform.getInstance(mod.getMetadata().getId());
}
@Override