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

fixed something I broke in the last commit

parent 484e6493
Branches
Tags
No related merge requests found
......@@ -25,6 +25,12 @@ if(file_exists(root + "server.ini")) {
var players;
var scores;
function gotoxy(x,y)
{
var posx=(x*3)+2;
var posy=22-(y*2);
console.gotoxy(posx,posy);
}
function getFiles(mask,blocking)
{
stream.recvfile(mask,blocking);
......@@ -267,12 +273,6 @@ function blox()
console.gotoxy(1,24);
console.putmsg("\1nArrow keys : move \1k\1h[\1nENTER\1k\1h]\1n : select \1k\1h[\1nQ\1k\1h]\1n : quit \1k\1h[\1n?\1k\1h]\1n : help \1k\1h[\1nR\1k\1h]\1n : redraw");
}
function gotoxy(x,y)
{
var posx=(x*3)+2;
var posy=22-(y*2);
console.gotoxy(posx,posy);
}
function movePosition(k)
{
current.grid[selx][sely].draw(false,selx,sely);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment