From 86cf90a582f8b3b84b7a8cbeedef250bd641901b Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Thu, 1 Sep 2022 17:11:10 +0800 Subject: only show inquis from party members also show from self --- features/events/index.js | 2 +- features/globalSettings/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/features/events/index.js b/features/events/index.js index 5e20036..73c9bec 100644 --- a/features/events/index.js +++ b/features/events/index.js @@ -171,7 +171,7 @@ class Events extends Feature { } inquisData(loc, user) { - if (this.ignorePlayers.has(user)) return + if (this.ignorePlayers.has(user) && user !== Player.getName()) return if (!loc) { delete this.slayerLocationDataH[user] return diff --git a/features/globalSettings/index.js b/features/globalSettings/index.js index 9e58d6f..8372c58 100644 --- a/features/globalSettings/index.js +++ b/features/globalSettings/index.js @@ -319,7 +319,7 @@ class GlobalSettings extends Feature { this.ahAlerts = [ // { //TODO: add a command/gui to add these // id: "ATTRIBUTE_SHARD", - // maxPrice: 1500000, + // maxPrice: 1300000, // nbt: [ // "tag.ExtraAttributes.attributes.mana_pool" // ] -- cgit