diff options
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 40d67a6..cd6ce5f 100755 --- a/servergreps/hercules/packets.py +++ b/servergreps/hercules/packets.py @@ -9,6 +9,7 @@ import sys from src.brathena import Brathena from src.hercules import Hercules from src.manaplus import ManaPlus +from src.ragemu import Ragemu from src.rathena import Rathena from src.reporter import Reporter @@ -34,6 +35,9 @@ rathena.reportName = "rathena" brathena = Brathena() brathena.dirName = "brathena" brathena.reportName = "brathena" +ragemu = Ragemu() +ragemu.dirName = "ragemu" +ragemu.reportName = "ragemu" manaplus = ManaPlus() reporter = Reporter() @@ -45,9 +49,12 @@ rathena.prepareTempFiles("rathena", packetDir, packetVersion) rathena.processPackets(packetDir, packetVersion) brathena.prepareTempFiles("brathena", packetDir, packetVersion) brathena.processPackets(packetDir, packetVersion) +ragemu.prepareTempFiles("ragemu", packetDir, packetVersion) +ragemu.processPackets(packetDir, packetVersion) manaplus.processPackets(packetVersion); reporter.reportManaplus(hercules, manaplus) reporter.reportHercules(hercules) reporter.reportRathena(hercules, rathena) reporter.reportHerculesFork(hercules, brathena, "brAthena") +reporter.reportHerculesFork(hercules, ragemu, "RagEmu") |