@@ -38,6 +38,6 @@ def console(message):
@as_plugin
def choice(message):
- opts = list(message.args)
+ opts = list(message.args())
chosen = random.choice(opts)
return f"Randomly chose {chosen} from {len(opts)} options"