Skip to content

Commit 04ad6db

Browse files
authored
Updated setCommandBlock's 3rd argument (#3356)
The 3rd argument is needed to set the options now
1 parent 0bb2707 commit 04ad6db

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

index.d.ts

+8-1
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,14 @@ export interface Bot extends TypedEmitter<BotEvents> {
379379
times?: number
380380
) => Promise<void>
381381

382-
setCommandBlock: (pos: Vec3, command: string, trackOutput: boolean) => void
382+
383+
export interface CommandBlockOptions {
384+
mode: number,
385+
trackOutput: boolean,
386+
conditional: boolean,
387+
alwaysActive: boolean
388+
}
389+
export function setCommandBlock(pos: Vec3, command: string, options: CommandBlockOptions) => void
383390

384391
clickWindow: (
385392
slot: number,

0 commit comments

Comments
 (0)