Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update auth.hpp
  • Loading branch information
Shxde1 authored Jan 29, 2025
commit a1e3af95533d961c19f345376fec40fe5666b621
6 changes: 4 additions & 2 deletions x64/auth.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ namespace KeyAuth {
std::string name, ownerid, version, url, path;
static bool debug;

api(std::string name, std::string ownerid, std::string version, std::string url, std::string path, bool debugParameter = false) {
setDebug(debugParameter);
api(std::string name, std::string ownerid, std::string version, std::string url, std::string path, bool debugParameter)
: name(name), ownerid(ownerid), version(version), url(url), path(path)
{
setDebug(debugParameter)
}

void ban(std::string reason = "");
Expand Down