$replayTrack
$replayTrack
will replay the current track, start it
over.
Usage
$replayTrack
Example(s)
This will replay the current track, start it over
1client.command({2 name: 'replay',3 code: `4 $replayTrack5 `6});
This will replay the current track, start it over
1module.exports = [{2 name: "replay",3 code: `4 $replayTrack5 `6}]