From 079ce2d8f3b1e698785d3995ea1c46287ad14c1f Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Thu, 24 Dec 2020 19:35:43 -0600 Subject: [PATCH] Remove debug log --- scripts/server/class.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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;