Skip to content

Commit 074bc4a

Browse files
committed
Fix not able to teleport to players on other worlds. Fixes: #451
1 parent 282b380 commit 074bc4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

BlueMapCommon/webapp/src/js/BlueMapApp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ export class BlueMapApp {
349349
return new Promise((resolve, reject) => {
350350
let loader = new FileLoader();
351351
loader.setResponseType("json");
352-
loader.load(map.data.dataUrl + "live/players?" + generateCacheHash(),
352+
loader.load(map.data.dataUrl + "live/players.json?" + generateCacheHash(),
353353
fileData => {
354354
if (!fileData) reject(`Failed to parse '${this.fileUrl}'!`);
355355
else resolve(fileData);

0 commit comments

Comments
 (0)