diff options
Diffstat (limited to 'features/agentlaiThings')
-rw-r--r-- | features/agentlaiThings/index.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/features/agentlaiThings/index.js b/features/agentlaiThings/index.js index aa3fdc3..1654be4 100644 --- a/features/agentlaiThings/index.js +++ b/features/agentlaiThings/index.js @@ -13,12 +13,13 @@ class AgentThings extends Feature { } onEnable(){ + return; this.initVariables() this.nearPlayerData = [] while(this.nearPlayerData.length < 100){this.nearPlayerData.push({})} - this.recordNearestPlayers = new ToggleSetting("Record nearby players", "You can then view this data with /nearplayers", true, "record_near_players", this) + this.recordNearestPlayers = new ToggleSetting("Record nearby players", "You can then view this data with /nearplayers", false, "record_near_players", this) this.registerStep(false, 1, this.step) |