yolkbot 0.1.1-alpha.4 → 0.1.1-alpha.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/types/bot.d.ts +3 -2
package/package.json
CHANGED
package/src/types/bot.d.ts
CHANGED
|
@@ -188,7 +188,9 @@ type intents = {
|
|
|
188
188
|
PATHFINDING: 3,
|
|
189
189
|
BUFFERS: 4,
|
|
190
190
|
PING: 5,
|
|
191
|
-
COSMETIC_DATA: 6
|
|
191
|
+
COSMETIC_DATA: 6,
|
|
192
|
+
PLAYER_HEALTH: 7,
|
|
193
|
+
PACKET_HOOK: 8
|
|
192
194
|
}
|
|
193
195
|
|
|
194
196
|
export class Bot {
|
|
@@ -196,7 +198,6 @@ export class Bot {
|
|
|
196
198
|
Intents: intents;
|
|
197
199
|
|
|
198
200
|
proxy: string;
|
|
199
|
-
name?: string;
|
|
200
201
|
autoUpdate: boolean;
|
|
201
202
|
disablePathing: boolean;
|
|
202
203
|
updateInterval: number;
|