Fix crash when replacing SimpleRegistry contents ()

* Fix crash when replacing SimpleRegistry contents

* Called .value() two more times
This commit is contained in:
Benonardo 2022-09-11 15:16:32 +02:00 committed by GitHub
parent 763dcebeb6
commit 726b65209a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -185,8 +185,8 @@ public abstract class SimpleRegistryMixin<T> extends Registry<T> implements Rema
} else {
RegistryEntry.Reference<T> oldObject = idToEntry.get(registryId.getValue());
if (oldObject != null && oldObject != object) {
int oldId = entryToRawId.getInt(oldObject);
if (oldObject != null && oldObject.value() != null && oldObject.value() != object) {
int oldId = entryToRawId.getInt(oldObject.value());
if (oldId != id && checkDuplicateKeys) {
throw new RuntimeException("Attempted to register ID " + registryId + " at different raw IDs (" + oldId + ", " + id + ")! If you're trying to override an item, use .set(), not .register()!");