Skip to content
This repository has been archived by the owner on Apr 15, 2022. It is now read-only.

Commit

Permalink
fixed version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
joseywoermann committed Feb 27, 2021
1 parent 0182307 commit 3559fcf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 3 additions & 5 deletions commands/changelog.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Preset am Beispiel $ping
import discord
from discord.ext import commands
import logging
Expand All @@ -12,13 +11,12 @@ def __init__(self, client):
@commands.guild_only()
async def changelog(self, ctx):

changelog_embed = discord.Embed(title="Changelog for version 2.0.2", color=discord.Color.lighter_grey())
changelog_embed.add_field(name="Allgemein:", value="Kritische Sicherheitslücke geschlossen")
changelog_embed.add_field(name="Allgemein:", value="discord.py auf Version 1.6.0 geupdated")
changelog_embed = discord.Embed(title="Changelog for version 2.1.2", color=discord.Color.lighter_grey())
changelog_embed.add_field(name="Änderungen: ", value="$userinfo geupdated, Bugfix")

changelog_embed.set_author(name=str(ctx.author), icon_url=ctx.author.avatar_url)

await ctx.reply(embed=changelog_embed)
await ctx.send(embed=changelog_embed)

def setup(client):
client.add_cog(Changelog(client))
2 changes: 1 addition & 1 deletion commands/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def __init__(self, client):
@commands.guild_only()
async def info(self, ctx):

info_embed = discord.Embed(title="Information", description="Version 2.0.2 by jcw05#1331\nhttp://navnlos.tk/", color=discord.Color.lighter_grey())
info_embed = discord.Embed(title="Information", description="Version 2.1.2 by jcw05#1331\nhttp://navnlos.ml/", color=discord.Color.lighter_grey())
info_embed.set_author(name=str(ctx.author), icon_url=ctx.author.avatar_url)

await ctx.reply(embed=info_embed)
Expand Down

0 comments on commit 3559fcf

Please sign in to comment.