Remove testing/CN items from the item dump

This commit is contained in:
KingRainbow44 2023-04-09 18:51:54 -04:00
parent 3557981b4a
commit d4936abb37
No known key found for this signature in database
GPG Key ID: FC2CB64B00D257BE

View File

@ -152,6 +152,7 @@ public interface Dumpers {
var dump = new HashMap<Integer, ItemData>(); var dump = new HashMap<Integer, ItemData>();
originalDump.forEach(item -> { originalDump.forEach(item -> {
// Validate the item. // Validate the item.
if (item.name.contains("[CHS]")) return;
if (names.contains(item.name)) return; if (names.contains(item.name)) return;
if (dump.containsKey(item.id)) return; if (dump.containsKey(item.id)) return;
// Add the item to the dump. // Add the item to the dump.