- Enabled `.ub` command
This commit is contained in:
Tristan B. Velloza Kildaire 2023-07-03 14:00:33 +02:00
parent 94c5403ebd
commit ab83859175
1 changed files with 3 additions and 1 deletions

View File

@ -29,12 +29,14 @@ public class Bot : Client
import botty.modules.ping : Ping;
import botty.modules.rot13 : Rot13;
import botty.modules.translate : Translate;
import botty.modules.urbandict : UrbanDict;
modules ~= [
new DeavmiComedy(this),
new EskomCalendarAPI(this),
new Ping(this),
new Rot13(this),
new Translate(this)
new Translate(this),
new UrbanDict(this)
];
}