Remove debug log

This commit is contained in:
Vortrex
2020-12-24 19:35:43 -06:00
parent 13d9ddaf15
commit 079ce2d8f3

View File

@@ -489,7 +489,6 @@ function initClassTable() {
this.keyState = false;
if(keyBindAssoc != null) {
console.log(keyBindAssoc["acct_hotkey_key"]);
this.databaseId = keyBindAssoc["acct_hotkey_id"];
this.key = toInteger(keyBindAssoc["acct_hotkey_key"]);
this.account = keyBindAssoc["acct_hotkey_acct"];
@@ -523,6 +522,13 @@ function initClassTable() {
this.scriptName = dbAssoc["ac_script_wl_name"];
}
},
removedWorldObjectData: class {
constructor(model, position, range) {
this.model = model;
this.position = position;
this.range = range;
}
},
}
return tempClasses;