We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bb2707 commit 04ad6dbCopy full SHA for 04ad6db
1 file changed
index.d.ts
@@ -379,7 +379,14 @@ export interface Bot extends TypedEmitter<BotEvents> {
379
times?: number
380
) => Promise<void>
381
382
- setCommandBlock: (pos: Vec3, command: string, trackOutput: boolean) => void
+
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
390
391
clickWindow: (
392
slot: number,
0 commit comments