aboutsummaryrefslogtreecommitdiff
path: root/features/dungeonMap/index.js
diff options
context:
space:
mode:
authorSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2022-04-20 17:29:18 +0800
committerSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2022-04-20 17:29:18 +0800
commit64cff6227af6e5f1df9685c93a2672c00a1ac171 (patch)
tree3cbf1ebb59580303c4cc09f8572dc6bb41d436eb /features/dungeonMap/index.js
parentfa041b29dce1848eb7bad0a69fe8374949a2bfba (diff)
downloadSoopyV2-64cff6227af6e5f1df9685c93a2672c00a1ac171.tar.gz
SoopyV2-64cff6227af6e5f1df9685c93a2672c00a1ac171.tar.bz2
SoopyV2-64cff6227af6e5f1df9685c93a2672c00a1ac171.zip
+ Change networth in NEU pv to soopynw
+ fix "Disable blood rush box when blood open" setting
Diffstat (limited to 'features/dungeonMap/index.js')
-rw-r--r--features/dungeonMap/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/features/dungeonMap/index.js b/features/dungeonMap/index.js
index 6280002..6facb3a 100644
--- a/features/dungeonMap/index.js
+++ b/features/dungeonMap/index.js
@@ -160,7 +160,7 @@ class DungeonMap extends Feature {
renderWorld() {
if (this.isInDungeon() && this.brBox.getValue()) {
- if (this.brBoxLoc && (!this.bloodOpened || this.brBoxDisableWhenBloodOpened.getValue())) {
+ if (this.brBoxLoc && (!this.bloodOpened || !this.brBoxDisableWhenBloodOpened.getValue())) {
drawBoxAtBlock(this.brBoxLoc[0] - 1.5, 69, this.brBoxLoc[1] - 1.5, 255, 0, 0, 3, 4)
}
}