mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-03 09:00:55 +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();
|
||||
for (final Field field : fields) {
|
||||
final String name = field.getName().toLowerCase(Locale.ENGLISH);
|
||||
if(name.equalsIgnoreCase("g_sch")) {
|
||||
continue;
|
||||
}
|
||||
Object value;
|
||||
try {
|
||||
final boolean accessible = field.isAccessible();
|
||||
|
Loading…
Reference in New Issue
Block a user