From 6d4157fc9a21bac70a6658d4b3477e53569e92c0 Mon Sep 17 00:00:00 2001 From: insert Date: Sat, 10 Aug 2024 17:01:48 -0400 Subject: [PATCH] Update --- gameutils.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gameutils.py b/gameutils.py index ae0f117..9c7b6d1 100644 --- a/gameutils.py +++ b/gameutils.py @@ -17,8 +17,9 @@ class GameView(nextcord.ui.View): ) async def nextturn(self, button: nextcord.ui.Button, interaction: nextcord.Interaction): ogmsg = interaction.message.content.split("\n") + turnmessage = ogmsg[0] ogmsg.pop(0) - message = "It has been decreed..\n" + message = f"{turnmessage}\n" found = False turnover = False for i in range(len(ogmsg)): @@ -62,12 +63,12 @@ class gameutils(commands.Cog): @nextcord.slash_command( name="turngen", description="Roll the next turn for a certian role", - guild_ids=[1247883904178978927], + guild_ids=[1247883904178978927,699285282276507708], default_member_permissions=nextcord.Permissions(manage_roles=True), ) @nextcord.ext.application_checks.has_permissions(manage_roles=True) - async def turngen(self, interaction: nextcord.Interaction, role: nextcord.Role): - message = "It has been decreed..\n" + async def turngen(self, interaction: nextcord.Interaction, role: nextcord.Role, turnmessage: str): + message = f"{turnmessage}\n" users = role.members random.shuffle(users) for i in range(len(users)):