Fix stupid minecraft
This commit is contained in:
@@ -6,8 +6,6 @@ import {
|
||||
ChatSendAfterEvent,
|
||||
Dimension,
|
||||
TicksPerSecond,
|
||||
BlockVolumeBase,
|
||||
CompoundBlockVolume,
|
||||
BlockVolume,
|
||||
} from "@minecraft/server";
|
||||
import { Mindkeeper, StoreType } from "./Commandeer/mindKeeper";
|
||||
@@ -25,6 +23,7 @@ import { IntroToLevel1Trail } from "./trails/IntroToLevel1Trail";
|
||||
import level1 from "./levels/level1/mission1";
|
||||
import level2 from "./levels/level1/mission2";
|
||||
import level3 from "./levels/level1/mission3";
|
||||
import { MinecraftBlockTypes } from "./vanilla-data/mojang-block";
|
||||
// import { loadTriggers } from "./triggers";
|
||||
|
||||
const mindKeeper = new Mindkeeper(world);
|
||||
@@ -141,7 +140,7 @@ async function lightUpPath() {
|
||||
|
||||
for (let z = pos2.z; z >= pos1.z; z--) {
|
||||
let volume: BlockVolume = new BlockVolume(vector3(pos1.x, pos1.y, z), vector3(pos1.x + 1, pos1.y, z));
|
||||
overworld.fillBlocks(volume, MinecraftBlockTypes.redstoneBlock);
|
||||
overworld.fillBlocks(volume, MinecraftBlockTypes.RedstoneBlock);
|
||||
await delay(4);
|
||||
}
|
||||
// let pos2 = vector3(2468, 9, 105);
|
||||
|
||||
Reference in New Issue
Block a user