fixed guild IDs bug, changed max capa to 1326 cause new racks
This commit is contained in:
parent
9263ee1e48
commit
3a4d6bf8b2
6
main.py
6
main.py
|
|
@ -37,7 +37,7 @@ async def on_connect():
|
|||
# guild IDs are both IDA servers
|
||||
@bot.slash_command(
|
||||
name="delivery",
|
||||
guild_ids=[1349222984837107797, 401372086746087425],
|
||||
guild_ids=[401372086746087425],
|
||||
description= "sends your delivery to the bot!"
|
||||
)
|
||||
async def delivery(ctx,
|
||||
|
|
@ -62,7 +62,7 @@ async def delivery(ctx,
|
|||
"Water",
|
||||
"Water Purifiers"
|
||||
]),
|
||||
quantity: discord.Option(discord.SlashCommandOptionType.integer, description="Please be nice and input a value between 1 and 1304 (fdev definitely touched something again)", min_value=1, max_value=1304),
|
||||
quantity: discord.Option(discord.SlashCommandOptionType.integer, description="Please be nice and input a value between 1 and 1326 (new rack update!!!!1!1)", min_value=1, max_value=1326),
|
||||
target: discord.Option(str, choices=['Station', 'Carrier'])
|
||||
):
|
||||
|
||||
|
|
@ -94,7 +94,7 @@ async def delivery(ctx,
|
|||
#change url command
|
||||
@bot.slash_command(
|
||||
name="change-sheet-url",
|
||||
guild_ids=[1349222984837107797, 401372086746087425],
|
||||
guild_ids=[401372086746087425],
|
||||
description= "changes the URL of the active sheet, use with caution"
|
||||
)
|
||||
async def changeSheetUrl(ctx,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user