aboutsummaryrefslogtreecommitdiff
path: root/features/dungeonMap
diff options
context:
space:
mode:
authorSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2022-03-02 18:33:11 +0800
committerSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2022-03-02 18:33:11 +0800
commitca0d97fdd6a68a332705e8cb8bb5ded92d727d50 (patch)
tree1db68048dc2cab4601438e97f77f6f3b49f117be /features/dungeonMap
parent4824bcb66f5cfb15bc2fdfbf68a386343ad52e46 (diff)
downloadSoopyV2-ca0d97fdd6a68a332705e8cb8bb5ded92d727d50.tar.gz
SoopyV2-ca0d97fdd6a68a332705e8cb8bb5ded92d727d50.tar.bz2
SoopyV2-ca0d97fdd6a68a332705e8cb8bb5ded92d727d50.zip
Fix hypixel offsetting all the rooms in a dungeon by 8 blocks
Diffstat (limited to 'features/dungeonMap')
-rw-r--r--features/dungeonMap/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/features/dungeonMap/index.js b/features/dungeonMap/index.js
index 95369dc..310c220 100644
--- a/features/dungeonMap/index.js
+++ b/features/dungeonMap/index.js
@@ -371,8 +371,8 @@ class DungeonMap extends Feature {
}
brBoxTemp = [
- (~~brBoxTemp[0])-0.5,
- (~~brBoxTemp[1])-0.5
+ (~~brBoxTemp[0])-8.5,
+ (~~brBoxTemp[1])-8.5
]
}
})