So its for now a minor annoyance having to look up your server IP rather than the hostname when you develop your game.
Something most if not all can (and must
Hi!ThomasLund wrote:OK - a really annoying one showed up today.
Neither room variables or user variables seem to work!
So while I did fix it in my local devel copy, I just wanted to confirm that none of you have used these and gotten them working, right?
Code: Select all
// Handle Room Variables
if (XmlUtil.GetSingleNode(roomVarsXml, ".") != null)
{
currRoom.ClearVariables();
PopulateVariables(currRoom.GetVariables(), roomVarsXml);
}
Code: Select all
// Handle Room Variables
if ( XmlUtil.GetSingleNode(xml, "body/vars") != null )
{
currRoom.ClearVariables();
currRoom.SetVariables(PopulateVariables(currRoom.GetVariables(), XmlUtil.GetSingleNode(xml, "body")));
}