diff --git a/editor/scripts/MapValidator b/editor/scripts/MapValidator index 45ae3e334..33ebcc62e 100644 --- a/editor/scripts/MapValidator +++ b/editor/scripts/MapValidator @@ -103,17 +103,21 @@ try { if (file.isFile() && path.startsWith(rootDirectory) && !name.equalsIgnoreCase("README") + && !name.endsWith(".animation") && !name.endsWith(".msg") - && !name.endsWith(".py") && !name.endsWith(".png") && !name.endsWith(".ppm") + && !name.endsWith(".py") + && !name.endsWith(".pyc") && !name.endsWith(".quests") - && !name.endsWith(".animation") + && !name.endsWith(".txt") + && !name.endsWith(".zip") && !name.equals("pshop_copier") && !name.equals("pshops_changelog") && !name.equals(".emergency") && !name.equals("ChangeLog") && !name.equals("COPYING") + && !name.equals("TODO") && !path.contains("/Info/") && !path.contains("/editor/scripts/")) { checkMap(file, file.getPath().substring(mapDefaultFolder.length()));