Before Format Wars

This commit is contained in:
2024-08-29 10:45:07 +02:00
parent 35af9ffc97
commit 545e47a9f3
20 changed files with 1243 additions and 399 deletions

View File

@@ -12,6 +12,7 @@ class AbstractAgentTrackMission extends Level {
constructor(
levelid: string,
agentStartPositon: Vector3,
agentStartFacing: Vector3,
agentEndPosition: Vector3,
startLevelCommandBlockPos: Vector3
) {
@@ -20,7 +21,7 @@ class AbstractAgentTrackMission extends Level {
pupeteer.sendWorldMessage(`%message.${levelid}.started`);
pupeteer.setTitleTimed(`%message.${levelid}.name`, 2.5);
startLevel(startLevelCommandBlockPos);
teleportAgent(agentStartPositon);
teleportAgent(agentStartPositon, agentStartFacing);
},
() => {
pupeteer.setActionBar(`%message.${levelid}.make`);