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):