summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2024-05-02 01:18:23 +0500
committerilotterytea <iltsu@alright.party>2024-05-02 01:18:23 +0500
commit673f55a39e5e7626ca29becf60ba161f264a8ad1 (patch)
tree9f7d04f54507f872edb5db024daae3d4d415ea98 /src/main.cpp
parent5776100b8a2f5fe568fbd19f8117bfce2cd63a5b (diff)
upd: use client_id and token to get bot creds
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index ff3e78b..2eb0a96 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -39,7 +39,7 @@ int main(int argc, char *argv[]) {
return -1;
}
- bot::irc::Client client(cfg.bot_username, cfg.bot_password);
+ bot::irc::Client client(cfg.bot_client_id, cfg.bot_password);
bot::command::CommandLoader command_loader;
bot::loc::Localization localization("localization");