View Single Post
  #16  
Old 05-06-2011, 07:59 PM
Bamzal
Sarnak
 
Join Date: Nov 2002
Location: https://discord.gg/ngqrDtyVe6
Posts: 33
Default

Thanks for the help lerxst. Pretty sure that I found the issue.

WorldHTTPEnabled=false to begin with, and in the code to check, the logic is reversed so it I would have to fix the logic or else a workaround is to just set enabled to anything BUT true in the eqemu_config.xml

Original:
Code:
		text = sub_ele->Attribute("enabled");
		if (text && !strcasecmp(text,"true"))
			WorldHTTPEnabled=true;
It was either designed to leave as false in the config file or else was recently modified incorrectly?

Changed to:
Code:
		text = sub_ele->Attribute("enabled");
		if (text && strcasecmp(text,"true"))
			WorldHTTPEnabled=true;
Reply With Quote