Don't dump biome array on /ps reload. Gradle also seems to want to change the Core pom.

This commit is contained in:
dordsor21
2020-04-16 11:43:13 +01:00
parent 4aac3bf7e4
commit a44807d47b
2 changed files with 8 additions and 8 deletions

View File

@ -121,7 +121,7 @@ import java.util.Locale;
final Field[] fields = this.getClass().getFields();
for (final Field field : fields) {
final String name = field.getName().toLowerCase(Locale.ENGLISH);
if (name.equalsIgnoreCase("g_sch")) {
if (name.contains("g_sch")) {
continue;
}
Object value;