diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-09-05 20:51:40 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-09-05 20:51:40 +0300 |
commit | 88dd7266cc3bae657afe00b1126704f9f9ce2484 (patch) | |
tree | ccc9abe685ae5027d181e7b1e5b002af9e7f87bf /servergreps/hercules/packets.py | |
parent | 5a677243f94d4fd29418faf715295ef283164d6f (diff) | |
download | evol-tools-88dd7266cc3bae657afe00b1126704f9f9ce2484.tar.gz evol-tools-88dd7266cc3bae657afe00b1126704f9f9ce2484.tar.bz2 evol-tools-88dd7266cc3bae657afe00b1126704f9f9ce2484.tar.xz evol-tools-88dd7266cc3bae657afe00b1126704f9f9ce2484.zip |
servergreps: add parsing and basic report for brAthena.
Diffstat (limited to 'servergreps/hercules/packets.py')
-rwxr-xr-x | servergreps/hercules/packets.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/servergreps/hercules/packets.py b/servergreps/hercules/packets.py index c5b73ed..40d67a6 100755 --- a/servergreps/hercules/packets.py +++ b/servergreps/hercules/packets.py @@ -6,6 +6,7 @@ import sys +from src.brathena import Brathena from src.hercules import Hercules from src.manaplus import ManaPlus from src.rathena import Rathena @@ -30,6 +31,9 @@ hercules.reportName = "hercules" rathena = Rathena() rathena.dirName = "rathena" rathena.reportName = "rathena" +brathena = Brathena() +brathena.dirName = "brathena" +brathena.reportName = "brathena" manaplus = ManaPlus() reporter = Reporter() @@ -39,8 +43,11 @@ hercules.prepareTempFiles(codeDir, packetDir, packetVersion) hercules.processPackets(packetDir, packetVersion) rathena.prepareTempFiles("rathena", packetDir, packetVersion) rathena.processPackets(packetDir, packetVersion) +brathena.prepareTempFiles("brathena", packetDir, packetVersion) +brathena.processPackets(packetDir, packetVersion) manaplus.processPackets(packetVersion); reporter.reportManaplus(hercules, manaplus) reporter.reportHercules(hercules) reporter.reportRathena(hercules, rathena) +reporter.reportHerculesFork(hercules, brathena, "brAthena") |