Skip to content
This repository has been archived by the owner on Oct 17, 2024. It is now read-only.

ループ再生の実装 #101

Merged
merged 3 commits into from
May 31, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
oopsie, I forgot
  • Loading branch information
ringo360 committed May 31, 2024
commit d2262f996f35b2b22bf5475244673411d59026d5
2 changes: 0 additions & 2 deletions packages/player/commands/loop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ import { LANG } from 'core';
import { PlayerCommand } from '../PlayerCommand';
import { QueueRepeatMode } from 'discord-player';

console.log('CALLED LOOP');

module.exports = new PlayerCommand(
new SlashCommandBuilder()
.setName(LANG.commands.loop.name)
Expand Down
1 change: 1 addition & 0 deletions packages/player/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ class PlayerFeature extends Feature {
require('./commands/skip'),
require('./commands/stop'),
require('./commands/volume'),
require('./commands/loop'),
]);

player.events.on('playerStart', (queue, track) => {
Expand Down