diff --git a/README.md b/README.md index 9c0e236c..387f2482 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![pipeline status](http://luker.zzzz.io/gitlab/ldooks/dragon-bot/badges/master/pipeline.svg)](http://luker.zzzz.io/gitlab/ldooks/dragon-bot/commits/master) +[![pipeline status](http://luker.duckdns.org/gitlab/ldooks/dragon-bot/badges/master/pipeline.svg)](http://luker.duckdns.org/gitlab/ldooks/dragon-bot/commits/master) # README # A discord bot written in python. diff --git a/app/dragon-bot.py b/app/dragon-bot.py index be535fe7..cd9da9ee 100644 --- a/app/dragon-bot.py +++ b/app/dragon-bot.py @@ -284,7 +284,7 @@ async def on_message(message): if message.content.startswith('!source'): await client.send_message( message.channel, - "http://luker.zzzz.io/gitlab/ldooks/dragon-bot" + "http://luker.duckdns.org/gitlab/ldooks/dragon-bot" ) if message.content.startswith('!purge'): @@ -437,7 +437,7 @@ async def on_message(message): if action == 'map': await client.send_message( message.channel, - "http://luker.zzzz.io/minecraft" + "http://luker.duckdns.org/minecraft" ) diff --git a/app/gitlab.py b/app/gitlab.py index c9c51a62..45982179 100644 --- a/app/gitlab.py +++ b/app/gitlab.py @@ -17,7 +17,7 @@ def create_issue(title, description): } r = requests.post( - 'http://luker.zzzz.io/gitlab/api/v4/projects/2/issues', + 'http://luker.duckdns.org/gitlab/api/v4/projects/2/issues', data=post_args, headers=headers ) diff --git a/app/help_methods.py b/app/help_methods.py index cd640076..326d0dd9 100644 --- a/app/help_methods.py +++ b/app/help_methods.py @@ -150,7 +150,7 @@ def get_help_embed(client): description2 = "**Use `!help ` for more information about a command.** \n\n" + \ "**Examples:** \n `!help dog` for detailed help for the dog command \n\n" + \ - "**Useful links:** [My source code](http://luker.zzzz.io/gitlab/ldooks/dragon-bot), [Server status](http://luker.zzzz.io/status), [Donate](http://luker.zzzz.io/donate)" + "**Useful links:** [My source code](http://luker.duckdns.org/gitlab/ldooks/dragon-bot), [Server status](http://luker.duckdns.org/status), [Donate](http://luker.duckdns.org/donate)" embed.add_field(name="\u200b", value=description2, inline=False) return embed