mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-22 17:27:38 +00:00
fix: add some file-extension bounds to schematic loading
This commit is contained in:
parent
b2f36facd8
commit
bf07548695
@ -112,6 +112,15 @@ public enum BuiltInClipboardFormat implements ClipboardFormat {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isFormat(File file) {
|
||||
String name = file.getName().toLowerCase(Locale.ROOT);
|
||||
if (name.endsWith(".schematic") || name.endsWith(".mcedit") || name.endsWith(".mce")) {
|
||||
return false;
|
||||
}
|
||||
return super.isFormat(file);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getPrimaryFileExtension() {
|
||||
return "schem";
|
||||
@ -151,6 +160,15 @@ public enum BuiltInClipboardFormat implements ClipboardFormat {
|
||||
return detectOldSpongeSchematic(inputStream, FastSchematicWriterV2.CURRENT_VERSION);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isFormat(File file) {
|
||||
String name = file.getName().toLowerCase(Locale.ROOT);
|
||||
if (name.endsWith(".schematic") || name.endsWith(".mcedit") || name.endsWith(".mce")) {
|
||||
return false;
|
||||
}
|
||||
return super.isFormat(file);
|
||||
}
|
||||
|
||||
},
|
||||
//FAWE end
|
||||
|
||||
@ -177,6 +195,15 @@ public enum BuiltInClipboardFormat implements ClipboardFormat {
|
||||
//FAWE end
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isFormat(File file) {
|
||||
String name = file.getName().toLowerCase(Locale.ROOT);
|
||||
if (!name.endsWith(".schematic") && !name.endsWith(".mcedit") && !name.endsWith(".mce")) {
|
||||
return false;
|
||||
}
|
||||
return super.isFormat(file);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isFormat(InputStream inputStream) {
|
||||
LinRootEntry rootEntry;
|
||||
|
Loading…
Reference in New Issue
Block a user