mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2025-02-17 20:21:40 +01:00
Make EntityTrackerBase#entities protected (#4103)
This commit is contained in:
parent
8ce4112e86
commit
9d75125e41
@ -34,7 +34,7 @@ import java.util.Map;
|
|||||||
import org.checkerframework.checker.nullness.qual.Nullable;
|
import org.checkerframework.checker.nullness.qual.Nullable;
|
||||||
|
|
||||||
public class EntityTrackerBase implements EntityTracker, ClientEntityIdChangeListener {
|
public class EntityTrackerBase implements EntityTracker, ClientEntityIdChangeListener {
|
||||||
private final Int2ObjectMap<TrackedEntity> entities = new Int2ObjectOpenHashMap<>();
|
protected final Int2ObjectMap<TrackedEntity> entities = new Int2ObjectOpenHashMap<>();
|
||||||
private final UserConnection connection;
|
private final UserConnection connection;
|
||||||
private final EntityType playerType;
|
private final EntityType playerType;
|
||||||
private int clientEntityId = -1;
|
private int clientEntityId = -1;
|
||||||
|
Loading…
Reference in New Issue
Block a user