Skip to content

Commit

Permalink
Update to 1.20.5rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
Patbox committed Apr 18, 2024
1 parent 72d723c commit 2243539
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
3 changes: 1 addition & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'fabric-loom' version '1.5-SNAPSHOT'
id 'fabric-loom' version '1.6.+'
id 'maven-publish'
}

Expand Down Expand Up @@ -57,7 +57,6 @@ dependencies {
//modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
modCompileOnly("net.fabricmc.fabric-api:fabric-api:${project.fabric_version}")
modLocalRuntime("net.fabricmc.fabric-api:fabric-api:${project.fabric_version}")
modLocalRuntime("eu.pb4:polymer-reg-sync-manipulator:0.0.1+1.19")
modCompileOnly("eu.pb4:placeholder-api:2.1.1+1.20")
modCompileOnly("me.lucko:fabric-permissions-api:0.2-SNAPSHOT")

Expand Down
12 changes: 6 additions & 6 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ org.gradle.jvmargs=-Xmx1G

# Fabric Properties
# check these on https://fabricmc.net/use
minecraft_version=24w13a
yarn_mappings=24w13a+build.2
loader_version=0.15.7
minecraft_version=1.20.5-rc1
yarn_mappings=1.20.5-rc1+build.1
loader_version=0.15.10

#Fabric api
fabric_version=0.96.12+1.20.5
#Fabric api
fabric_version=0.97.3+1.20.5

# Mod Properties
mod_version = 0.3.0+1.20.5
mod_version = 0.4.0+1.20.5
maven_group = eu.pb4
archives_base_name = predicate-api

2 changes: 1 addition & 1 deletion src/testmod/java/eu/pb4/placeholderstest/TestMod.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ private static int test(CommandContext<ServerCommandSource> context) {
public void onInitialize() {
CommandRegistrationCallback.EVENT.register((dispatcher, registryAccess, dedicated) -> {
dispatcher.register(
literal("test").then(argument("text", TextArgumentType.text()).executes(TestMod::test))
literal("test").then(argument("text", TextArgumentType.text(registryAccess)).executes(TestMod::test))
);
});
}
Expand Down

0 comments on commit 2243539

Please sign in to comment.