diff --git a/src/pluralkit/bot/__init__.py b/src/pluralkit/bot/__init__.py index 6f7d4edd..042c8497 100644 --- a/src/pluralkit/bot/__init__.py +++ b/src/pluralkit/bot/__init__.py @@ -61,7 +61,7 @@ def run(): print("{} servers".format(len(client.guilds))) print("{} shards".format(client.shard_count or 1)) - await client.change_presence(activity=discord.Game(name="kek;help")) + await client.change_presence(activity=discord.Game(name="pk;help")) @client.event async def on_message(message: discord.Message): diff --git a/src/pluralkit/bot/commands/__init__.py b/src/pluralkit/bot/commands/__init__.py index 117ecb6c..c4b2d6eb 100644 --- a/src/pluralkit/bot/commands/__init__.py +++ b/src/pluralkit/bot/commands/__init__.py @@ -211,7 +211,7 @@ async def run_command(ctx: CommandContext, func): async def command_dispatch(client: discord.Client, message: discord.Message, conn) -> bool: - prefix = "^(kek(;|!)|<@{}> )".format(client.user.id) + prefix = "^(pk(;|!)|<@{}> )".format(client.user.id) regex = re.compile(prefix, re.IGNORECASE) cmd = message.content