Browse Source

Turns out the @client functions really don't want a 'self' argument

master
Noëlle Anthony 4 years ago
parent
commit
906dafa5ba
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      mushcord.py

+ 3
- 3
mushcord.py View File

config = {} config = {}
for option in options: for option in options:
o = option.strip("\n").split('=') o = option.strip("\n").split('=')
config[o[0]] = config[o[1]]
config[o[0]] = o[1]
self.TOKEN = config['TOKEN'] self.TOKEN = config['TOKEN']
self.server = config['SERVER'] self.server = config['SERVER']
self.port = int(config['PORT']) self.port = int(config['PORT'])
self.password = config['PASSWORD'] self.password = config['PASSWORD']
@client.event @client.event
async def on_message(self, message):
async def on_message(message):
if message.author == client.user: if message.author == client.user:
return return
if message.content.startswith('!hello'): if message.content.startswith('!hello'):
mc.t.write(msg) mc.t.write(msg)


@client.event @client.event
async def on_ready(self):
async def on_ready():
print('Logged in as') print('Logged in as')
print(client.user.name) print(client.user.name)
print(client.user.id) print(client.user.id)

Loading…
Cancel
Save