diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-05-25 10:41:33 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-05-22 09:38:09 -0300 |
commit | 76467f2cdd66d3ffa4909e939eda7b46f8cdd849 (patch) | |
tree | 21eca5ee145952c54dfe18a19e5c5df39fe3e9aa | |
parent | 7424080f7d18659dcf6e1c613cf7e355d0d5b134 (diff) | |
download | tools-76467f2cdd66d3ffa4909e939eda7b46f8cdd849.tar.gz tools-76467f2cdd66d3ffa4909e939eda7b46f8cdd849.tar.bz2 tools-76467f2cdd66d3ffa4909e939eda7b46f8cdd849.tar.xz tools-76467f2cdd66d3ffa4909e939eda7b46f8cdd849.zip |
Remove false-positive
-rwxr-xr-x | testxml/testxml.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/testxml/testxml.py b/testxml/testxml.py index 7b43d74..6252847 100755 --- a/testxml/testxml.py +++ b/testxml/testxml.py @@ -1312,7 +1312,6 @@ def testParticles(id, node, nodeName, src): def testSounds(id, node, type): global errors - havemiss = False for sound in node.getElementsByTagName("sound"): try: event = sound.attributes["event"].value @@ -1329,12 +1328,6 @@ def testSounds(id, node, type): if event != "hit" and event != "miss": print "error: incorrect sound event name " + event + " in id=" + id errors = errors + 1 - ## FIXME: Is this even necessary? - if event == "strike" or event == "miss": - if havemiss: - print "error: miss and strike attributes at same time in id=" + id - errors = errors + 1 - havemiss = True testSound(sound.childNodes[0].data, sfxDir, "") |