Fix override duplication caused by bad comparison.
This commit is contained in:
parent
7b0a005167
commit
fdfaa5036d
1 changed files with 1 additions and 1 deletions
|
@ -655,7 +655,7 @@ public class ForgeRegistry<V extends IForgeRegistryEntry<V>> implements IForgeRe
|
|||
continue;
|
||||
}
|
||||
|
||||
if (primaryName.equals(owner))
|
||||
if (primaryName.equals(owner.owner))
|
||||
continue;
|
||||
|
||||
int realId = add(newId, value, owner.owner);
|
||||
|
|
Loading…
Reference in a new issue