Skip to content

Commit

Permalink
Update help
Browse files Browse the repository at this point in the history
  • Loading branch information
Bentechy66 committed Dec 28, 2017
1 parent c63b37a commit 177d1e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Binary file modified __pycache__/flutes.cpython-36.pyc
Binary file not shown.
4 changes: 3 additions & 1 deletion flutes.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

@bot.command(pass_context=True)
async def SetFP(ctx, status):
"""Used to set the various flute player channels. Only accessible to Game Masters.\n\nThe <status> argument can be either 'victim' or 'master' (without the quotes)"""
roles = []
for role in ctx.message.author.roles:
roles.append(role.name)
Expand All @@ -28,6 +29,7 @@ async def SetFP(ctx, status):

@bot.command(pass_context=True)
async def w(ctx, *, message):
"""Whisper to your flute victims >:)\n\nNote: Only avaliable in the Flute Master channel."""
print("Test C Passed")
with open ("data/victim.channel", "r") as victim_file:
VictimID=victim_file.readlines()
Expand Down Expand Up @@ -68,7 +70,7 @@ async def on_message(message):

if str(message.channel.id) == str(VictimID):
if message.author != bot.user:
await bot.send_message(MasterChannel, "One of your victims said something! - " + message.author.mention + " said '" + message.content + "'!")
await bot.send_message(MasterChannel, "One of your victims said something! - " + message.author.mention + " said \n'`" + message.content + "`'!")
else:
python = "dum"

Expand Down

0 comments on commit 177d1e9

Please sign in to comment.