diff --git a/eos/effects/shipbonustitang2alldamagebonus.py b/eos/effects/shipbonustitang2emexplosivedamagebonus.py similarity index 100% rename from eos/effects/shipbonustitang2alldamagebonus.py rename to eos/effects/shipbonustitang2emexplosivedamagebonus.py diff --git a/eve.db b/eve.db index ebf5051c7..a862983e7 100644 Binary files a/eve.db and b/eve.db differ diff --git a/scripts/itemDiff.py b/scripts/itemDiff.py index a6287b97a..218233bbd 100755 --- a/scripts/itemDiff.py +++ b/scripts/itemDiff.py @@ -57,10 +57,12 @@ def main(old, new, groups=True, effects=True, attributes=True, renames=True): implemented = set() for filename in os.listdir(effectspath): - basename, extension = filename.rsplit('.', 1) + if filename.startswith("_") or not filename.endswith(".py"): + continue + + basename, _ = filename.rsplit('.', 1) # Ignore non-py files and exclude implementation-specific 'effect' - if extension == "py" and basename not in ("__init__",): - implemented.add(basename) + implemented.add(basename) # Effects' names are used w/o any special symbols by eos stripspec = "[^A-Za-z0-9]"