mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 05:21:29 +00:00
28 lines
784 B
C++
28 lines
784 B
C++
#include "../worlddb.h"
|
|
#include "../../common/database_schema.h"
|
|
|
|
void WorldserverCLI::MercsEnable(int argc, char **argv, argh::parser &cmd, std::string &description)
|
|
{
|
|
description = "Enables mercenaries";
|
|
|
|
if (cmd[{"-h", "--help"}]) {
|
|
return;
|
|
}
|
|
|
|
// bootstrap merc tables if they don't exist
|
|
if (!database.DoesTableExist("merc_types")) {
|
|
LogInfo("Bootstrapping merc tables");
|
|
database.SourceSqlFromUrl(
|
|
"https://raw.githubusercontent.com/EQEmu/Server/master/utils/sql/merc_tables_bootstrap.sql"
|
|
);
|
|
}
|
|
else {
|
|
LogInfo("Merc tables already exist, skipping bootstrap");
|
|
}
|
|
|
|
LogInfo("Enabling mercs");
|
|
LogInfo("Setting rule Mercs:AllowMercs to true");
|
|
RuleManager::Instance()->SetRule("Mercs:AllowMercs", "true", &database, true, true);
|
|
LogInfo("Mercs enabled");
|
|
}
|