From 7016c19f9c736671d8af1401ac25d5175401891f Mon Sep 17 00:00:00 2001 From: Bruno Caitano <52182057+SnowRunescape@users.noreply.github.com> Date: Sun, 15 Oct 2023 16:00:07 -0400 Subject: [PATCH] typings: add entityAtCursor to bot (#3200) --- index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/index.d.ts b/index.d.ts index 98dad4a39..6bd8fccd5 100644 --- a/index.d.ts +++ b/index.d.ts @@ -408,6 +408,7 @@ export interface Bot extends TypedEmitter { waitForChunksToLoad: () => Promise + entityAtCursor: (maxDistance?: number) => Entity | null nearestEntity: (filter?: (entity: Entity) => boolean) => Entity | null waitForTicks: (ticks: number) => Promise