Code cleanup

This commit is contained in:
2025-04-11 17:30:08 +02:00
parent 9041bacf48
commit 02d2f624cf
27 changed files with 246 additions and 262 deletions

View File

@ -14,8 +14,8 @@ public class ServerWorldMixin {
@Inject(method = "onDimensionChanged", at = {@At("HEAD")})
public void onDimensionChange(Entity entity, CallbackInfo ci) {
if(entity instanceof ServerPlayerEntity) {
PacketUtils.updateListNames((ServerPlayerEntity)entity);
if (entity instanceof ServerPlayerEntity) {
PacketUtils.updateListNames((ServerPlayerEntity) entity);
}
}
}