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

changed ini file reference to filesync.ini

parent 579268ab
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,6 @@
load("funclib.js");
load("sbbsdefs.js");
load("sockdefs.js");
//load("commsync.js");
const normal_scope= "#";
const global_scope= "!";
......@@ -22,7 +21,7 @@ function GameConnection(id)
this.session_id= (id?id:"default");
this.notices= [];
var comminit=new File(system.ctrl_dir + "commsync.ini");
var comminit=new File(system.ctrl_dir + "filesync.ini");
comminit.open('r');
var module=comminit.iniGetObject(this.session_id);
comminit.close();
......
......@@ -10,7 +10,7 @@ function comm_sync()
var filedate=data[3];
log("synchronizing files: " + filemask);
var comminit=new File(system.ctrl_dir + "commsync.ini");
var comminit=new File(system.ctrl_dir + "filesync.ini");
comminit.open('r');
var module=comminit.iniGetObject(session_id);
comminit.close();
......
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