diff options
Diffstat (limited to 'servergreps/hercules/packets.py')
-rwxr-xr-x | servergreps/hercules/packets.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/servergreps/hercules/packets.py b/servergreps/hercules/packets.py index f33b5f7..67f6f75 100755 --- a/servergreps/hercules/packets.py +++ b/servergreps/hercules/packets.py @@ -57,25 +57,25 @@ reporter.packetDir = packetDir; hercules.prepareTempFiles(codeDir, packetDir, packetVersion) hercules.processPackets(packetDir, packetVersion) rathena.prepareTempFiles("rathena", packetDir, packetVersion) -rathena.processPackets(packetDir, packetVersion) +rathena.processPackets("rathena", packetDir, packetVersion) brathena.prepareTempFiles("brathena", packetDir, packetVersion) brathena.processPackets(packetDir, packetVersion) ragemu.prepareTempFiles("ragemu", packetDir, packetVersion) ragemu.processPackets(packetDir, packetVersion) threeceam.prepareTempFiles("3ceam", packetDir, packetVersion) -threeceam.processPackets(packetDir, packetVersion) +threeceam.processPackets("3ceam", packetDir, packetVersion) idathena.prepareTempFiles("idathena", packetDir, packetVersion) -idathena.processPackets(packetDir, packetVersion) +idathena.processPackets("idathena", packetDir, packetVersion) server2013.processPackets("server2013") server2014.processPackets("server2014") manaplus.processPackets(packetVersion); reporter.reportManaplus(hercules, manaplus) reporter.reportHercules(hercules) -reporter.reportRathena(hercules, rathena) +reporter.reportHerculesFork(hercules, rathena, "rAthena") reporter.reportHerculesFork(hercules, brathena, "brAthena") reporter.reportHerculesFork(hercules, ragemu, "RagEmu") -reporter.reportThreeceam(hercules, threeceam) -reporter.reportIdathena(hercules, idathena) +reporter.reportHerculesFork(hercules, threeceam, "3CeaM") +reporter.reportHerculesFork(hercules, idathena, "idAthena") reporter.reportServer(hercules, server2013) reporter.reportServer(hercules, server2014) |