View Single Post
  #4  
Old 07-09-2020, 11:37 AM
RedVapor
Fire Beetle
 
Join Date: Dec 2018
Posts: 7
Default

FYI this ended up being a bug in the code!

Worth noting, if you run "ps -ef | grep ./loginserver" there should only be one process and one log file! I submitted this to the devs so it should be fixed but if anyone is on the older code and battling this open your ~/server/server_launcher.pl and change a value on line 174.

Code:
#  Change this two...
for ($i = $loginserver_process_count; $i < 2; $i++) {

# To one...
for ($i = $loginserver_process_count; $i < 1; $i++) {
Reply With Quote