init vars [skip ci]

This commit is contained in:
Akkadius 2019-07-11 01:23:55 -05:00
parent 7b808ee6e0
commit 949e7adff8
2 changed files with 3 additions and 3 deletions

View File

@ -61,7 +61,7 @@ int main(int argc, char** argv)
server.options.DumpOutPackets(server.config.GetVariableBool("general", "dump_packets_out", false)); server.options.DumpOutPackets(server.config.GetVariableBool("general", "dump_packets_out", false));
server.options.RejectDuplicateServers(server.config.GetVariableBool("general", "reject_duplicate_servers", false)); server.options.RejectDuplicateServers(server.config.GetVariableBool("general", "reject_duplicate_servers", false));
server.options.AutoCreateAccounts(server.config.GetVariableBool("general", "auto_create_accounts", true)); server.options.AutoCreateAccounts(server.config.GetVariableBool("general", "auto_create_accounts", true));
server.options.AutoLinkAccounts(server.config.GetVariableBool("general", "auto_link_accounts", true)); server.options.AutoLinkAccounts(server.config.GetVariableBool("general", "auto_link_accounts", false));
#ifdef LSPX #ifdef LSPX
server.options.EQEmuLoginServerAddress( server.options.EQEmuLoginServerAddress(

View File

@ -1467,8 +1467,8 @@ protected:
eStandingPetOrder pStandingPetOrder; eStandingPetOrder pStandingPetOrder;
uint32 minLastFightingDelayMoving; uint32 minLastFightingDelayMoving;
uint32 maxLastFightingDelayMoving; uint32 maxLastFightingDelayMoving;
float pAggroRange; float pAggroRange = 0;
float pAssistRange; float pAssistRange = 0;
std::unique_ptr<Timer> AI_think_timer; std::unique_ptr<Timer> AI_think_timer;
std::unique_ptr<Timer> AI_movement_timer; std::unique_ptr<Timer> AI_movement_timer;
std::unique_ptr<Timer> AI_target_check_timer; std::unique_ptr<Timer> AI_target_check_timer;