9
0
mirror of https://github.com/Xiao-MoMi/Custom-Nameplates.git synced 2025-12-19 15:09:23 +00:00
This commit is contained in:
XiaoMoMi
2025-04-26 17:03:13 +08:00
parent 75982b67a1
commit 3b6542858c
3 changed files with 9 additions and 9 deletions

View File

@@ -1,6 +1,6 @@
# Project settings
# Rule: [major update].[feature update].[bug fix]
project_version=3.0.26.1
project_version=3.0.26.2
config_version=37
project_group=net.momirealms
@@ -47,9 +47,9 @@ lwjgl_version=3.3.4
fastutil_version=8.5.15
# Proxy settings
#systemProp.socks.proxyHost=127.0.0.1
#systemProp.socks.proxyPort=7890
#systemProp.http.proxyHost=127.0.0.1
#systemProp.http.proxyPort=7890
#systemProp.https.proxyHost=127.0.0.1
#systemProp.https.proxyPort=7890
systemProp.socks.proxyHost=127.0.0.1
systemProp.socks.proxyPort=7890
systemProp.http.proxyHost=127.0.0.1
systemProp.http.proxyPort=7890
systemProp.https.proxyHost=127.0.0.1
systemProp.https.proxyPort=7890

View File

@@ -68,7 +68,7 @@ public class ChatControlRedProvider extends AbstractChatMessageProvider implemen
@Override
public boolean canJoinChannel(CNPlayer player, String channelID) {
return ((Player) player).hasPermission("chatcontrol.channel.join."+channelID+".read");
return player.hasPermission("chatcontrol.channel.join."+channelID+".read");
}
@Override

View File

@@ -1037,7 +1037,7 @@ public class Reflections {
public static final Class<?> clazz$Team$Visibility = requireNonNull(
ReflectionUtils.getClazz(
BukkitReflectionUtils.assembleMCClass("world.scores.ScoreboardTeam$EnumNameTagVisibility"),
BukkitReflectionUtils.assembleMCClass("world.scores.ScoreboardTeamBase$EnumNameTagVisibility"),
BukkitReflectionUtils.assembleMCClass("world.scores.Team$Visibility")
)
);