Discord.py welcome bot on_member_join event not getting callded

后端 未结 2 977
执笔经年
执笔经年 2020-12-22 11:58

I\'ve been interested in working with discord bots lately, and from what I\'m seeing this code should work but it is not... I\'m simply just playing around with the API beca

2条回答
  •  粉色の甜心
    2020-12-22 12:24

    You forgot the brackets for the decorators.

    @client.event
    

    should be

    @client.event()
    

    EDIT: Not it, apparently. Will update this answer when OP replies with more information.

提交回复
热议问题