Fix entity ID generator on 1.18.2

This commit is contained in:
filoghost 2022-03-05 19:38:32 +01:00
parent 6bee8d4d17
commit 28479a85a9
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ import java.util.function.Supplier;
public class VersionNMSManager implements NMSManager {
private static final ReflectField<AtomicInteger> ENTITY_ID_COUNTER_FIELD = ReflectField.lookup(AtomicInteger.class, Entity.class, "b");
private static final ReflectField<AtomicInteger> ENTITY_ID_COUNTER_FIELD = ReflectField.lookup(AtomicInteger.class, Entity.class, "c");
private final Supplier<Integer> entityIDGenerator;
public VersionNMSManager(ErrorCollector errorCollector) {