Move simulate-lobby-activity.lua next to the script using it

This commit is contained in:
Gunter Labes 2023-07-20 18:37:05 +02:00 committed by GitHub
parent 3b389c62f2
commit 26394f77e5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

View file

@ -37,7 +37,7 @@ server = subprocess.Popen(("wesnothd", "-p", str(PORT)), -1, None, DEVNULL, DEVN
# Launch the clients
clients = set()
for i in range(NUM_CLIENTS):
clients.add(subprocess.Popen(("wesnoth", "--plugin=simulate-lobby-activity.lua", "--server=localhost:%d" % PORT, "--username=%d" % i, "--nogui"),
clients.add(subprocess.Popen(("wesnoth", "--plugin=utils/simulate-lobby-activity.lua", "--server=localhost:%d" % PORT, "--username=%d" % i, "--nogui"),
-1, None, DEVNULL, DEVNULL, DEVNULL))
input("done.\nPress Enter when you want to terminate all processes.")