no longer try patching if it's the wrong rom.

People ignore the warning.
This commit is contained in:
Fabian Dill
2020-03-08 02:18:55 +01:00
parent f583db3ee9
commit 611f4d3fb2
3 changed files with 6 additions and 4 deletions

View File

@@ -170,7 +170,9 @@ async def on_client_disconnected(ctx: Context, client: Client):
await on_client_left(ctx, client)
async def on_client_joined(ctx: Context, client: Client):
notify_all(ctx, "%s (Team #%d) has joined the game" % (client.name, client.team + 1))
notify_all(ctx, "%s (Team #%d) has joined the game. Client(%s, %s)." % (client.name, client.team + 1,
".".join(str(x) for x in client.version),
client.tags))
async def on_client_left(ctx: Context, client: Client):
notify_all(ctx, "%s (Team #%d) has left the game" % (client.name, client.team + 1))