diff --git a/scripts/server/class.js b/scripts/server/class.js index 7eb9717c..13430147 100644 --- a/scripts/server/class.js +++ b/scripts/server/class.js @@ -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;