Make registries persist by default, fixes #3989 (#3998)

This commit is contained in:
Marvin Rösch 2017-06-15 22:00:46 +02:00 committed by LexManos
parent 8833386ada
commit 50e268bdf5
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ public class RegistryBuilder<T extends IForgeRegistryEntry<T>>
private List<ClearCallback<T>> clearCallback = Lists.newArrayList();
private List<CreateCallback<T>> createCallback = Lists.newArrayList();
private List<SubstitutionCallback<T>> substitutionCallback = Lists.newArrayList();
private boolean saveToDisc;
private boolean saveToDisc = true;
public RegistryBuilder<T> setName(ResourceLocation name)
{