mirror of
https://github.com/FabricMC/fabric.git
synced 2025-04-03 10:39:57 -04:00
Fix crash when replacing SimpleRegistry contents (#2504)
* Fix crash when replacing SimpleRegistry contents * Called .value() two more times
This commit is contained in:
parent
763dcebeb6
commit
726b65209a
1 changed files with 2 additions and 2 deletions
|
@ -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()!");
|
||||
|
|
Loading…
Add table
Reference in a new issue