Skip to content
Snippets Groups Projects
Commit 7c4f21e8 authored by rswindell's avatar rswindell
Browse files

Fixed run-time error TypeError: data.players[useralias] is undefined

parent f0185e4c
No related branches found
No related tags found
No related merge requests found
...@@ -12,8 +12,8 @@ load("sbbsdefs.js") ...@@ -12,8 +12,8 @@ load("sbbsdefs.js")
load("funclib.js"); load("funclib.js");
var oldpass = console.ctrl_key_passthru; var oldpass = console.ctrl_key_passthru;
var data = new GameData();
var useralias = user.alias.replace(/\./g,"_"); var useralias = user.alias.replace(/\./g,"_");
var data = new GameData();
/* cycle client and check for updates */ /* cycle client and check for updates */
function cycle() { function cycle() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment