Skip to content

Commit

Permalink
Update to 1.20.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Patbox committed Dec 4, 2023
1 parent d5be34f commit c0e24a1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'fabric-loom' version '0.12-SNAPSHOT'
id 'fabric-loom' version '1.4.+'
id 'maven-publish'
id "com.modrinth.minotaur" version "2.+"
id 'com.matthewprenger.cursegradle' version '1.4.0'
Expand Down Expand Up @@ -38,8 +38,8 @@ dependencies {
modCompileOnly("net.fabricmc.fabric-api:fabric-api:${project.fabric_version}")
modLocalRuntime("net.fabricmc.fabric-api:fabric-api:${project.fabric_version}")

modImplementation include("eu.pb4:placeholder-api:2.2.0+1.20.2")
modImplementation include("eu.pb4:player-data-api:0.3.0+1.20.2")
modImplementation include("eu.pb4:placeholder-api:2.3.0+1.20.3")
modImplementation include("eu.pb4:player-data-api:0.4.0+1.20.3")
modImplementation include("me.lucko:fabric-permissions-api:0.2-SNAPSHOT")

modCompileOnly("maven.modrinth:vanish:1.4.0+1.19.4")
Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ org.gradle.jvmargs=-Xmx1G

# Fabric Properties
# check these on https://fabricmc.net/use
minecraft_version=1.20.2-rc2
yarn_mappings=1.20.2-rc2+build.1
loader_version=0.14.21
minecraft_version=1.20.3-rc1
yarn_mappings=1.20.3-rc1+build.1
loader_version=0.15.0

#Fabric api
fabric_version=0.89.0+1.20.2
fabric_version=0.91.1+1.20.3
# Mod Properties
mod_version = 1.3.0+1.20.2
mod_version = 1.4.0+1.20.3
maven_group = eu.pb4
archives_base_name = styled-nicknames

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion src/main/java/eu/pb4/stylednicknames/command/Commands.java
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ private static int realname(CommandContext<ServerCommandSource> context) {
context.getSource().sendFeedback(() -> Text.translatable("Found %s players with that nickname:", foundPlayers.size()), false);
}
foundPlayers.forEach((serverPlayerEntity, mutableText) -> {
context.getSource().sendFeedback(() -> Text.translatable("The real name of %s is %s.", serverPlayerEntity.getDisplayName(), serverPlayerEntity.getEntityName()), false);
context.getSource().sendFeedback(() -> Text.translatable("The real name of %s is %s.", serverPlayerEntity.getDisplayName(), serverPlayerEntity.getNameForScoreboard()), false);
}
);
}
Expand Down

0 comments on commit c0e24a1

Please sign in to comment.