5252import java .util .TreeSet ;
5353import java .util .function .Predicate ;
5454
55- @ Mixin (org .valkyrienskies .core .impl .shadow .Er .class )
55+ @ Mixin (org .valkyrienskies .core .impl .shadow .Et .class )
5656public abstract class MixinShipObjectServerWorld implements VsiServerShipWorld {
5757 @ Unique
58- private static final String M_clearNewUpdatedDeletedShipObjectsAndVoxelUpdates = "j " ;
58+ private static final String M_clearNewUpdatedDeletedShipObjectsAndVoxelUpdates = "k " ;
5959
6060 @ Shadow (remap = false )
6161 @ Final
62- private ArrayList <org .valkyrienskies .core .impl .shadow .Er .b > j ;
62+ private ArrayList <org .valkyrienskies .core .impl .shadow .Et .b > k ;
6363 @ Unique
6464 private final Set <VsiPlayer > disconnectedPlayers = new HashSet <>();
6565 @ Unique
@@ -70,8 +70,8 @@ public abstract class MixinShipObjectServerWorld implements VsiServerShipWorld {
7070 private final Map <ChunkPos , AdvancedBitSet > loadedChunks = new HashMap <>();
7171
7272 @ Unique
73- public ArrayList <org .valkyrienskies .core .impl .shadow .Er .b > getVoxelShapeUpdatesList () {
74- return this .j ;
73+ public ArrayList <org .valkyrienskies .core .impl .shadow .Et .b > getVoxelShapeUpdatesList () {
74+ return this .k ;
7575 }
7676
7777 @ ModifyVariable (method = "setPlayers" , at = @ At ("HEAD" ), remap = false )
@@ -163,21 +163,21 @@ public void getChunkWatchTasks(final CallbackInfoReturnable<VsiChunkWatchTasks>
163163
164164 @ Inject (method = M_clearNewUpdatedDeletedShipObjectsAndVoxelUpdates + "()V" , at = @ At ("HEAD" ), remap = false )
165165 public void clearNewUpdatedDeletedShipObjectsAndVoxelUpdates (final CallbackInfo ci ) {
166- for (final org .valkyrienskies .core .impl .shadow .Er .b updates : this .getVoxelShapeUpdatesList ()) {
166+ for (final org .valkyrienskies .core .impl .shadow .Et .b updates : this .getVoxelShapeUpdatesList ()) {
167167 final ServerLevel level = LevelUtil .getLevel (updates .a ());
168168 if (level == null ) {
169169 continue ;
170170 }
171171 final ChunkSensor sensor = ChunkSensor .get (level );
172172 final int maxSectionCount = level .getSectionsCount ();
173- for (final org .valkyrienskies .core .impl .shadow .Il update : updates .b ()) {
173+ for (final org .valkyrienskies .core .impl .shadow .Ip update : updates .b ()) {
174174 final int x = update .a (), z = update .c ();
175175 if (VSGameUtilsKt .isChunkInShipyard (level , x , z )) {
176176 continue ;
177177 }
178178 final int y = level .getSectionIndexFromSectionY (update .b ());
179179 final ChunkPos pos = new ChunkPos (x , z );
180- final boolean isload = update .d () != org .valkyrienskies .core .impl .shadow .Ip .DELETE ;
180+ final boolean isload = update .d () != org .valkyrienskies .core .impl .shadow .It .DELETE ;
181181 if (isload ) {
182182 final AdvancedBitSet sections = this .loadedChunks .computeIfAbsent (pos , (pos0 ) -> new AdvancedBitSet (maxSectionCount ));
183183 if (sections .set (y ) && sections .count () == maxSectionCount ) {
0 commit comments