diff --git a/app/bot.py b/app/bot.py index 7f0c373c..cb503491 100755 --- a/app/bot.py +++ b/app/bot.py @@ -439,7 +439,10 @@ async def verify(ctx): @bot.command(name="clap") async def clap(ctx): - await ctx.send("{}".format(" :clap: ".join(ctx.message.content.split()[1:]))) + content = ctx.message.content.split()[1:] + if len(content) == 1: + content = [char for char in content[0]] + await ctx.send("{}".format(" :clap: ".join(content))) @bot.command(name=".") diff --git a/helm/values.yaml b/helm/values.yaml index e1a11371..3eed731d 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -8,7 +8,7 @@ image: repository: ldooks/dragon-bot pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. - tag: "118" + tag: "119" imagePullSecrets: [] nameOverride: ""