fixing .send to not add brackets
This commit is contained in:
parent
6cd3a85024
commit
08480594eb
@ -451,7 +451,7 @@ async def roles(ctx):
|
|||||||
@bot.command(name="send")
|
@bot.command(name="send")
|
||||||
async def send(ctx):
|
async def send(ctx):
|
||||||
if ctx.message.author.discriminator == "2528":
|
if ctx.message.author.discriminator == "2528":
|
||||||
await bot.get_channel(152921472304676865).send(ctx.message.content.split()[1:])
|
await bot.get_channel(152921472304676865).send(' '.join(ctx.message.content.split()[1:]))
|
||||||
|
|
||||||
|
|
||||||
@bot.command(name="simp")
|
@bot.command(name="simp")
|
||||||
|
@ -8,7 +8,7 @@ image:
|
|||||||
repository: ldooks/dragon-bot
|
repository: ldooks/dragon-bot
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
# Overrides the image tag whose default is the chart appVersion.
|
# Overrides the image tag whose default is the chart appVersion.
|
||||||
tag: "107"
|
tag: "108"
|
||||||
|
|
||||||
imagePullSecrets: []
|
imagePullSecrets: []
|
||||||
nameOverride: ""
|
nameOverride: ""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user