Skip to content

Commit 9d9b812

Browse files
committed
Add delay to potentially work around MCE issues
1 parent 60f9ca0 commit 9d9b812

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

cyber_kingdom.ts

+2
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,12 @@ namespace cyber {
9595

9696
public addRule(): void {
9797
//player.say(`Placing blocks at ${this.x} ${this.y} ${this.z}`)
98+
loops.pause(200);
9899
blocks.place(STONE, world(this.x, this.y, this.z))
99100
}
100101

101102
public removeRule(): void {
103+
loops.pause(200);
102104
blocks.place(AIR, world(this.x, this.y, this.z))
103105
}
104106
}

0 commit comments

Comments
 (0)