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

@ -18,6 +18,12 @@
<version>1.18.12</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>19.0.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.sk89q.worldedit</groupId>
<artifactId>worldedit-core</artifactId>
@ -83,13 +89,7 @@
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>1.3.61</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>18.0.0</version>
<version>1.3.72</version>
<scope>runtime</scope>
</dependency>
<dependency>

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;