This update adds support for command logging in non text type channels, (e.g. Threads)
Added a whole new section to the configuration file, to upgrade to this version I recommend adding the following at the end of theconfig.yml. As of this update, you are only able to use the bot logging type. Webhook logging is coming in a later update.
YAML:logging: # Either "webhook" or "bot" type: "bot" # webhook_url is only used when type is set to "webhook" # https://support.discord.com/hc/en-us/articles/228383668-Intro-to-Webhooks # Generate and create ur webhook url webhook_url: "WEBHOOK_URL" # channel_id is only used when type is set to "bot" # The bot must be in the same server as that channel id and have access to send messages channel_id: "CHANNEL_ID" events: command: enabled: true message: "{username} (`{userid}`) used **{command_name}** in {channel_name} (`{channel_id}`) ||/{command_name} {args}||" startup: enabled: true message: "Discord Remote Commands has started." shutdown: # May not send if server is killed (rather than stopped) enabled: true message: "Discord Remote Commands has shut down."
Added a new configuration optionpublish-as. This option can either be set as "global" or a guild id. If it's set as a guild id, it will try to publish the commands to that specific guild.
