From 242002ebd2d991358a654a8dd159130d1a66a0d8 Mon Sep 17 00:00:00 2001 From: Steveplays28 Date: Mon, 2 Oct 2023 22:35:26 +0200 Subject: [PATCH] style: Reformat `@Shadow` annotation --- .../steveplays28/realisticsleep/mixin/ServerWorldMixin.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/github/steveplays28/realisticsleep/mixin/ServerWorldMixin.java b/src/main/java/com/github/steveplays28/realisticsleep/mixin/ServerWorldMixin.java index 438247b..391f310 100644 --- a/src/main/java/com/github/steveplays28/realisticsleep/mixin/ServerWorldMixin.java +++ b/src/main/java/com/github/steveplays28/realisticsleep/mixin/ServerWorldMixin.java @@ -69,7 +69,8 @@ public abstract class ServerWorldMixin extends World { @Final private boolean shouldTickTime; - @Shadow public abstract List getPlayers(); + @Shadow + public abstract List getPlayers(); protected ServerWorldMixin(MutableWorldProperties properties, RegistryKey registryRef, RegistryEntry registryEntry, Supplier profiler, boolean isClient, boolean debugWorld, long seed, int maxChainedNeighborUpdates) { super(properties, registryRef, registryEntry, profiler, isClient, debugWorld, seed, maxChainedNeighborUpdates);