messageReactionAdd not working any more

Comentarios

1 comentario

  • Spider

    this doesn't work any more either

    guild.channels.create('new-channel', {
      type: 'text',
      permissionOverwrites: [
      {
        id: message.guild.id,
        deny: ['VIEW_CHANNEL'],
      },
      {
        id: message.author.id,
        allow: ['VIEW_CHANNEL'],
      },],
    });

    it use to work fine, but will error - unless you remove
    {
    id: message.author.id,
    allow: ['VIEW_CHANNEL'],
    }

    0

Iniciar sesión para dejar un comentario.