feat: mc 1.21

This commit is contained in:
Peter253545 2024-06-21 02:45:33 +01:00
parent bea9e68fee
commit fd7aeb5a78
No known key found for this signature in database
GPG key ID: 8E6D2330102AD16F
6 changed files with 16 additions and 16 deletions

View file

@ -1,10 +1,10 @@
plugins {
id("fabric-loom") version "1.5.+"
id("fabric-loom") version "1.7-SNAPSHOT"
id("com.modrinth.minotaur") version "2.+"
`maven-publish`
}
version = "2.1.0+1.20.4"
version = "2.1.0+1.21"
group = "dev.ashhhleyyy"
repositories {
@ -51,15 +51,15 @@ tasks.processResources {
}
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
withSourcesJar()
}
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
options.release.set(17)
options.release.set(21)
}
tasks.jar {

View file

@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME

View file

@ -1,13 +1,13 @@
[versions]
minecraft = "1.20.4"
yarn = "1.20.4+build.3"
minecraft = "1.21"
yarn = "1.21+build.2"
fabric-loader = "0.15.3"
fabric-api = "0.95.3+1.20.4"
fabric-loader = "0.15.11"
fabric-api = "0.100.3+1.21"
placeholder-api = "2.3.0+1.20.3"
placeholder-api = "2.4.0-pre.2+1.21"
fabric-permissions = "0.2-SNAPSHOT"
fabric-permissions = "0.3.1"
[libraries]
minecraft = { module = "com.mojang:minecraft", version.ref = "minecraft" }

View file

@ -86,7 +86,7 @@ public class Config {
String s = Files.readString(path);
JsonElement ele = JsonParser.parseString(s);
DataResult<Config> result = CODEC.decode(JsonOps.INSTANCE, ele).map(Pair::getFirst);
Optional<DataResult.PartialResult<Config>> err = result.error();
Optional<DataResult.Error<Config>> err = result.error();
err.ifPresent(e -> PlayerPronouns.LOGGER.warn("Failed to load config: {}", e.message()));
return result.result().orElseGet(Config::new);
} catch (IOException e) {

View file

@ -138,10 +138,10 @@ public class PlayerPronouns implements ModInitializer, PronounsApi.PronounReader
PronounsCommand.register(dispatcher);
});
Placeholders.register(new Identifier(MOD_ID, "pronouns"), (ctx, argument) ->
Placeholders.register(Identifier.of(MOD_ID, "pronouns"), (ctx, argument) ->
fromContext(ctx, argument, true));
Placeholders.register(new Identifier(MOD_ID, "raw_pronouns"), (ctx, argument) ->
Placeholders.register(Identifier.of(MOD_ID, "raw_pronouns"), (ctx, argument) ->
fromContext(ctx, argument, false));
PronounsApi.initReader(this);

View file

@ -22,7 +22,7 @@
"depends": {
"fabricloader": "*",
"fabric-api": "*",
"minecraft": ">=1.20.4",
"minecraft": ">=1.21",
"placeholder-api": "*",
"fabric-permissions-api-v0": "*"
}