From 49f6ac1c1a6b8351cd5f2d08278aef87c492eee9 Mon Sep 17 00:00:00 2001 From: khuxkm fbexl Date: Tue, 21 Mar 2023 18:38:03 +0000 Subject: [PATCH] Fix URLs --- commands/ask.py | 4 ++-- commands/generate.py | 2 +- commands/quote.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/commands/ask.py b/commands/ask.py index ee3b9bc..5b389be 100644 --- a/commands/ask.py +++ b/commands/ask.py @@ -1,8 +1,8 @@ import plugin,utils,random,importlib importlib.reload(utils) -chars = utils.get("https://github.com/cwarwicker/discord-WriterBot/raw/master/assets/json/en/q_char.json") -world = utils.get("https://github.com/cwarwicker/discord-WriterBot/raw/master/assets/json/en/q_world.json") +chars = utils.get("https://github.com/mblake/discord-WriterBot/raw/master/assets/json/q_char.json") +world = utils.get("https://github.com/mblake/discord-WriterBot/raw/master/assets/json/q_world.json") @plugin.group("ask","") def ask(bot,channel,nick,subcmd,*args): diff --git a/commands/generate.py b/commands/generate.py index efc03fc..b9154fa 100644 --- a/commands/generate.py +++ b/commands/generate.py @@ -17,7 +17,7 @@ GENERATORS_LIST = [ "land", "place" ] -GENERATOR_URL = "https://github.com/cwarwicker/discord-WriterBot/raw/master/assets/json/en/gen_{}.json" +GENERATOR_URL = "https://github.com/mblake/discord-WriterBot/raw/master/assets/json/gen_{}.json" def get_generator(name): generator = utils.get(GENERATOR_URL.format(name)) out = dict() diff --git a/commands/quote.py b/commands/quote.py index 9bb1821..28f7993 100644 --- a/commands/quote.py +++ b/commands/quote.py @@ -1,8 +1,8 @@ import plugin,utils,random,importlib importlib.reload(utils) -quotes = utils.get("https://github.com/cwarwicker/discord-WriterBot/raw/master/assets/json/en/quotes.json") -reassure = utils.get("https://github.com/cwarwicker/discord-WriterBot/raw/master/assets/json/en/reassure.json") +quotes = utils.get("https://github.com/mblake/discord-WriterBot/raw/master/assets/json/quotes.json") +reassure = utils.get("https://github.com/mblake/discord-WriterBot/raw/master/assets/json/reassure.json") @plugin.command("quotes") def _quotes(bot,channel,nick,*args):