From 3fd0b9b89ed3d906cc4465945e82f555f6f2c73c Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Sun, 10 Apr 2022 04:41:18 +0800 Subject: make some hidden features not enable even if (somehow) toggled on just incase --- features/agentlaiThings/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'features/agentlaiThings') 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) -- cgit