Skip to content

Commit

Permalink
[TwitchIO] Update osrswiki command to use new domain for the OSRS Wiki
Browse files Browse the repository at this point in the history
  • Loading branch information
Harmon758 committed Feb 17, 2019
1 parent eb77519 commit 87237fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Twitch/Harmonbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
class Bot(commands.Bot):

def __init__(self, loop = None, initial_channels = [], **kwargs):
self.version = "3.0.0-b.59"
self.version = "3.0.0-b.60"

loop = loop or asyncio.get_event_loop()
initial_channels = list(initial_channels)
Expand Down
2 changes: 1 addition & 1 deletion Twitch/cogs/runescape.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ async def monster(self, ctx, *, monster):

@commands.command(aliases = ("07rswiki", "rswiki07", "rswikios"))
async def osrswiki(self, ctx, *search):
await ctx.send("https://oldschoolrunescape.wikia.com/wiki/" + '_'.join(search))
await ctx.send("https://oldschool.runescape.wiki/w/" + '_'.join(search))

@commands.command()
async def rswiki(self, ctx, *search):
Expand Down

0 comments on commit 87237fd

Please sign in to comment.