mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-04 09:10:17 +01:00
Don't dump g_sch
This commit is contained in:
parent
00a5d5ff64
commit
ae9e52f093
@ -98,6 +98,9 @@ public abstract class ClassicPlotWorld extends SquarePlotWorld {
|
|||||||
final Field[] fields = this.getClass().getFields();
|
final Field[] fields = this.getClass().getFields();
|
||||||
for (final Field field : fields) {
|
for (final Field field : fields) {
|
||||||
final String name = field.getName().toLowerCase(Locale.ENGLISH);
|
final String name = field.getName().toLowerCase(Locale.ENGLISH);
|
||||||
|
if(name.equalsIgnoreCase("g_sch")) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
Object value;
|
Object value;
|
||||||
try {
|
try {
|
||||||
final boolean accessible = field.isAccessible();
|
final boolean accessible = field.isAccessible();
|
||||||
|
Loading…
Reference in New Issue
Block a user