summaryrefslogtreecommitdiff
path: root/servergreps/hercules/src/reporter.py
diff options
context:
space:
mode:
Diffstat (limited to 'servergreps/hercules/src/reporter.py')
-rwxr-xr-xservergreps/hercules/src/reporter.py13
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: