zeusops / operationbot

A bot for handling events on the Zeusops discord server
GNU General Public License v3.0
7 stars 4 forks source link

Fetch roles using a converter #69

Closed Gehock closed 3 years ago

Gehock commented 3 years ago

Will fix #54 and #55. Blocks #6

Adds a new converter ArgRole that allows referring to roles as as follows:

Additionally, changes some of the existing commands to use the converter instead of parsing role names manually.

Gehock commented 3 years ago

This turned out to be slightly more complicated than anticipated because parsing the role requires knowledge about the Event argument as well. I'm not sure if the converter can access other arguments passed to the command

Gehock commented 3 years ago

Figured out that the converter can access the Event argument through ctx.args. This seems to be working now, could maybe be tested by implementing #80