(Temporarily) Removed dimension indication to tab list due to a lot of bugs
Some checks failed
build / build (push) Has been cancelled

This commit is contained in:
2025-03-18 21:28:04 +01:00
parent 4894b7d389
commit 7b247ce2cc
4 changed files with 6 additions and 6 deletions

View File

@ -19,8 +19,8 @@ public class ServerWorldMixin {
if(entity instanceof ServerPlayerEntity) {
ServerPlayerEntity player = (ServerPlayerEntity)entity;
String dimension = Messages.getDimensionFormatted(player.getServerWorld().getRegistryKey().getValue().toTranslationKey());
player.sendMessage(Text.literal(dimension), false);
DimensionTeams.assignCorrectTeam(player, player.getServerWorld().getRegistryKey().getValue().toTranslationKey());
//player.sendMessage(Text.literal(dimension), false);
//DimensionTeams.assignCorrectTeam(player, player.getServerWorld().getRegistryKey().getValue().toTranslationKey());
}
}
}