Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test success #4

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion openkore.pl
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion src/functions.pl
Original file line number Diff line number Diff line change
Expand Up @@ -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}}) {
Expand Down Expand Up @@ -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();
}
Expand Down