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 7638957..90a987d 100755 --- a/servergreps/hercules/packets.py +++ b/servergreps/hercules/packets.py @@ -8,6 +8,7 @@ import sys from src.brathena import Brathena from src.hercules import Hercules +from src.idathena import Idathena from src.manaplus import ManaPlus from src.ragemu import Ragemu from src.rathena import Rathena @@ -42,6 +43,9 @@ ragemu.reportName = "ragemu" threeceam = Threeceam() threeceam.dirName = "3ceam" threeceam.reportName = "3ceam" +idathena = Idathena() +idathena.dirName = "idathena" +idathena.reportName = "idathena" manaplus = ManaPlus() reporter = Reporter() @@ -57,6 +61,8 @@ ragemu.prepareTempFiles("ragemu", packetDir, packetVersion) ragemu.processPackets(packetDir, packetVersion) threeceam.prepareTempFiles("3ceam", packetDir, packetVersion) threeceam.processPackets(packetDir, packetVersion) +idathena.prepareTempFiles("idathena", packetDir, packetVersion) +idathena.processPackets(packetDir, packetVersion) manaplus.processPackets(packetVersion); reporter.reportManaplus(hercules, manaplus) @@ -65,3 +71,4 @@ reporter.reportRathena(hercules, rathena) reporter.reportHerculesFork(hercules, brathena, "brAthena") reporter.reportHerculesFork(hercules, ragemu, "RagEmu") reporter.reportThreeceam(hercules, threeceam) +reporter.reportIdathena(hercules, idathena) |