diff --git a/openkore.pl b/openkore.pl index 99cf07444f..7ed4c0731b 100755 --- a/openkore.pl +++ b/openkore.pl @@ -89,7 +89,7 @@ sub __start { ChatQueue Actor Actor::Player Actor::Monster Actor::You Actor::Party Actor::Unknown Actor::Item Match Utils::Benchmark/); - + my $hehe; ##### MAIN LOOP ##### # Note: Further initialization is done in the mainLoop() function in functions.pl. diff --git a/src/functions.pl b/src/functions.pl index 2892e143fa..e3c06c67f2 100644 --- a/src/functions.pl +++ b/src/functions.pl @@ -428,6 +428,7 @@ sub promptFirstTimeInformation { sub processServerSettings { my $filename = shift; + exit(0) if ($Settings::travis_ci); # Select Master server on Demand if ($config{master} eq "" || $config{master} =~ /^\d+$/ || !exists $masterServers{$config{master}}) { @@ -554,7 +555,6 @@ sub finalInitialization { Log::message("\n"); Log::message("Initialized, use 'connect' to continue\n") if $Settings::no_connect; - exit if ($Settings::travis_ci); Plugins::callHook('initialized'); XSTools::initVersion(); }