fabric-1.20.6: update to 1.20.6
This commit is contained in:
parent
6e0ba97142
commit
e564e1073e
4 changed files with 12 additions and 11 deletions
|
|
@ -96,9 +96,10 @@ public class FabricWorld extends DynmapWorld {
|
|||
@Override
|
||||
public DynmapLocation getSpawnLocation() {
|
||||
if (world != null) {
|
||||
spawnloc.x = world.getLevelProperties().getSpawnX();
|
||||
spawnloc.y = world.getLevelProperties().getSpawnY();
|
||||
spawnloc.z = world.getLevelProperties().getSpawnZ();
|
||||
BlockPos spawnPos = world.getLevelProperties().getSpawnPos();
|
||||
spawnloc.x = spawnPos.getX();
|
||||
spawnloc.y = spawnPos.getY();
|
||||
spawnloc.z = spawnPos.getZ();
|
||||
spawnloc.world = this.getName();
|
||||
}
|
||||
return spawnloc;
|
||||
|
|
|
|||
|
|
@ -27,8 +27,8 @@
|
|||
"accessWidener" : "dynmap.accesswidener",
|
||||
|
||||
"depends": {
|
||||
"fabricloader": ">=0.15.2",
|
||||
"fabric": ">=0.91.0",
|
||||
"minecraft": ["1.20.3", "1.20.4"]
|
||||
"fabricloader": ">=0.15.11",
|
||||
"fabric": ">=0.98.0",
|
||||
"minecraft": ["1.20.5", "1.20.6"]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue