aboutsummaryrefslogtreecommitdiff
path: root/features/agentlaiThings
diff options
context:
space:
mode:
authorSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2022-04-10 04:41:18 +0800
committerSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2022-04-10 04:41:18 +0800
commit3fd0b9b89ed3d906cc4465945e82f555f6f2c73c (patch)
tree8d1c9cfe5b0d41772128f1f5b34d7eaa711d83c2 /features/agentlaiThings
parent2d85abb385e277ae41953121b1de587ea1635bb6 (diff)
downloadSoopyV2-3fd0b9b89ed3d906cc4465945e82f555f6f2c73c.tar.gz
SoopyV2-3fd0b9b89ed3d906cc4465945e82f555f6f2c73c.tar.bz2
SoopyV2-3fd0b9b89ed3d906cc4465945e82f555f6f2c73c.zip
make some hidden features not enable even if (somehow) toggled on just incase
Diffstat (limited to 'features/agentlaiThings')
-rw-r--r--features/agentlaiThings/index.js3
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)