A lavaclient plugin that adds queue support to the Player class.
- ✅ Verified: This is a verified Lavaclient plugin.
npm install https://github.com/Fortune-Inc/Fortune-lavaclient-queue.git
This only works with lavaclient 3.x.x
import { Manager } from "@fortune-inc/lavaclient";
import { QueuePlugin } from "@fortune-inc/lavaclient-queue";
const manager = new Manager(...);
manager.use(new QueuePlugin());
// Or
const manager = new Manager(..., {
plugins: [new QueuePlugin()],
...
});