diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-09-25 01:03:18 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-09-25 01:15:07 +0300 |
commit | ae2e0dfd1009e66bd970048a0fc9806998f6b6fc (patch) | |
tree | 074805dd8ef35489a4850b3f4bf4fbb9ac6a6867 /servergreps/hercules/src/reporter.py | |
parent | 8ab1170b13cf499e07ff1e29c7cd9bb7525d6684 (diff) | |
download | tools-ae2e0dfd1009e66bd970048a0fc9806998f6b6fc.tar.gz tools-ae2e0dfd1009e66bd970048a0fc9806998f6b6fc.tar.bz2 tools-ae2e0dfd1009e66bd970048a0fc9806998f6b6fc.tar.xz tools-ae2e0dfd1009e66bd970048a0fc9806998f6b6fc.zip |
servergreps: add parsing packets_db.txt for eAthena forks.
Diffstat (limited to 'servergreps/hercules/src/reporter.py')
-rwxr-xr-x | servergreps/hercules/src/reporter.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/servergreps/hercules/src/reporter.py b/servergreps/hercules/src/reporter.py index 87be910..74c2e50 100755 --- a/servergreps/hercules/src/reporter.py +++ b/servergreps/hercules/src/reporter.py @@ -245,19 +245,6 @@ class Reporter: w.write("Exists only in " + name + ": " + packet + "\n") - def reportThreeceam(self, hercules, threeceam): - with open(self.packetDir + "/" + hercules.reportName + "_" + threeceam.reportName + "_outpackets.txt", "w") as w: - for packet in threeceam.outPacketsSorted: - if packet not in hercules.packetsSet: - w.write("Exists only in 3CeaM: " + packet + "\n") - - - def reportIdathena(self, hercules, idathena): - with open(self.packetDir + "/" + hercules.reportName + "_" + idathena.reportName + "_outpackets.txt", "w") as w: - for packet in idathena.outPacketsSorted: - if packet not in hercules.packetsSet: - w.write("Exists only in idAthena: " + packet + "\n") - def reportServer(self, hercules, server): with open(self.packetDir + "/" + hercules.reportName + "_" + server.dirName + "_outpackets.txt", "w") as w: for packet in server.outPacketsSorted: |