Skip to content
Snippets Groups Projects
Commit d6554a5b authored by mcmlxxix's avatar mcmlxxix
Browse files

Input line now display normal low intensity white text by default

parent b77c25ff
No related branches found
No related tags found
No related merge requests found
......@@ -87,7 +87,6 @@ function ChatEngine(root,name,log_)
this.fullscreen=false;
break;
}
console.gotoxy(this.x,this.y);
Log("Chat Initialized:");
Log("mode: " + (this.fullscreen==true?"fullscreen":(mode=='W'?"window":"single line")));
}
......@@ -198,7 +197,7 @@ function ChatEngine(root,name,log_)
}
}
this.buffer+=key;
console.write(key);
console.putmsg("\1n" + key);
}
this.GetNotices=function()
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment