removes guild ID

This commit is contained in:
SuperNovaa41 2022-03-12 12:02:01 -05:00
parent 8ddd2b3882
commit 837af4239a

View File

@ -18,8 +18,7 @@ void init_commands(dpp::commandhandler &command_handler)
std::string response = find_username(username); std::string response = find_username(username);
command_handler.reply(dpp::message(response), src); command_handler.reply(dpp::message(response), src);
}, },
"Finds the github username, and their associated GBP value.", "Finds the github username, and their associated GBP value."
865347537287249980
); );
@ -36,8 +35,7 @@ void init_commands(dpp::commandhandler &command_handler)
std::string response = find_gbp(gbp); std::string response = find_gbp(gbp);
command_handler.reply(dpp::message(response), src); command_handler.reply(dpp::message(response), src);
}, },
"Finds the users with the amount of GBP provided.", "Finds the users with the amount of GBP provided."
865347537287249980
); );
std::cout << "Command added!\n"; std::cout << "Command added!\n";
@ -49,12 +47,11 @@ void init_commands(dpp::commandhandler &command_handler)
[&command_handler](const std::string &command, const dpp::parameter_list_t &parameters, dpp::command_source src) { [&command_handler](const std::string &command, const dpp::parameter_list_t &parameters, dpp::command_source src) {
int pos; int pos;
if (!parameters.empty()) if (!parameters.empty())
pos= std::stoi(std::get<std::string>(parameters[0].second)); pos = std::stoi(std::get<std::string>(parameters[0].second));
std::string response = find_gbp_pos(pos); std::string response = find_gbp_pos(pos);
command_handler.reply(dpp::message(response), src); command_handler.reply(dpp::message(response), src);
}, },
"Finds the users with the amount of GBP provided.", "Finds the users with the amount of GBP provided."
865347537287249980
); );
std::cout << "Command added!\n"; std::cout << "Command added!\n";
@ -67,8 +64,7 @@ void init_commands(dpp::commandhandler &command_handler)
fetch_raw_gbp(); fetch_raw_gbp();
command_handler.reply(dpp::message("Fetched latest GBP!"), src); command_handler.reply(dpp::message("Fetched latest GBP!"), src);
}, },
"Fetches the latest GBP.", "Fetches the latest GBP."
865347537287249980
); );
std::cout << "Command added!\n"; std::cout << "Command added!\n";