We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32f479d commit a380fd6Copy full SHA for a380fd6
src/main/js/journeymap.js
@@ -224,9 +224,18 @@ class Journeymap {
224
}
225
226
const reverseHellTranslate = ((this.currentDim !== "minecraft:the_nether") && (waypoint.pos.primaryDimension === "minecraft:the_nether"))
227
-
228
- const posX = waypoint.pos.x;
229
- const posZ = waypoint.pos.z;
+ console.log(reverseHellTranslate
+ + " : " +
+ (this.currentDim !== "minecraft:the_nether")
230
231
+ (waypoint.pos.primaryDimension === "minecraft:the_nether")
232
233
+ this.currentDim
234
235
+ waypoint.pos.primaryDimension)
236
+
237
+ const posX = waypoint.pos.x
238
+ const posZ = waypoint.pos.z
239
240
const coords = reverseTranslateCoords(posX + 0.5, posZ + 0.5, reverseHellTranslate)
241
0 commit comments