Skip to content

Commit fc0df2a

Browse files
committed
Fix region-file clipboard y value
1 parent 0517d21 commit fc0df2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/webapp/src/js/PopupMarker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export class PopupMarker extends Marker {
7272

7373
static blockClipboardFormat = (pos, isHires) => isHires ? `${pos.x} ${pos.y} ${pos.z}` : `${pos.x} ${pos.z}`;
7474
static chunkClipboardFormat = (pos, isHires) => isHires ? `${pos.x} ${pos.y} ${pos.z}` : `${pos.x} ${pos.z}`;
75-
static regionClipboardFormat = pos => `r.${pos.x}.${pos.z}.mca`
75+
static regionClipboardFormat = pos => `r.${pos.x}.${pos.y}.mca`
7676

7777
onMapInteraction = evt => {
7878
let isHires = true;

0 commit comments

Comments
 (0)