mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 01:11:29 +00:00
Fix Travis
This commit is contained in:
parent
7aa1d243b0
commit
52a43a3edb
@ -367,14 +367,17 @@ int main(int argc, char** argv) {
|
||||
#ifdef BOTS
|
||||
Log(Logs::General, Logs::Zone_Server, "Loading bot commands");
|
||||
int botretval = bot_command_init();
|
||||
if (botretval<0)
|
||||
if (botretval < 0) {
|
||||
Log(Logs::General, Logs::Error, "Bot command loading FAILED");
|
||||
else
|
||||
}
|
||||
else {
|
||||
Log(Logs::General, Logs::Zone_Server, "%d bot commands loaded", botretval);
|
||||
}
|
||||
|
||||
Log(Logs::General, Logs::Zone_Server, "Loading bot spell casting chances");
|
||||
if (!botdb.LoadBotSpellCastingChances())
|
||||
if (!botdb.LoadBotSpellCastingChances()) {
|
||||
Log(Logs::General, Logs::Error, "Bot spell casting chances loading FAILED");
|
||||
}
|
||||
#endif
|
||||
|
||||
if(RuleB(TaskSystem, EnableTaskSystem)) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user