Skip to content

Commit

Permalink
Fix type (#2919)
Browse files Browse the repository at this point in the history
* Fix type

* Fix type
  • Loading branch information
sefirosweb authored Feb 3, 2023
1 parent 4e05e9e commit e87d7f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ interface BotEvents {
) => Promise<void> | void
noteHeard: (block: Block, instrument: Instrument, pitch: number) => Promise<void> | void
pistonMove: (block: Block, isPulling: number, direction: number) => Promise<void> | void
chestLidMove: (block: Block, isOpen: number) => Promise<void> | void
chestLidMove: (block: Block, isOpen: number, block2: Block | null) => Promise<void> | void
blockBreakProgressObserved: (block: Block, destroyStage: number) => Promise<void> | void
blockBreakProgressEnd: (block: Block) => Promise<void> | void
diggingCompleted: (block: Block) => Promise<void> | void
Expand Down

0 comments on commit e87d7f4

Please sign in to comment.