Fix name in legacy support in registry changes.

This commit is contained in:
LexManos 2016-08-08 17:32:49 -07:00
parent ef28edb526
commit 69af6a9b8c

View file

@ -766,7 +766,7 @@ public class PersistentRegistryManager
if (cb == null)
return null;
try {
final Method mtd = cb.getClass().getMethod("onClear", Map.class);
final Method mtd = cb.getClass().getMethod("onCreate", Map.class);
return new IForgeRegistry.CreateCallback<T>()
{
@Override