Added local audio file playback

This commit is contained in:
2025-07-04 21:32:39 -05:00
parent 991d50a945
commit 6a77ea0c06
83 changed files with 597 additions and 426 deletions

View File

@@ -1,9 +1,9 @@
package com.fpghoti.biscuit.commands.base;
import com.fpghoti.biscuit.Main;
import com.fpghoti.biscuit.biscuit.Biscuit;
import com.fpghoti.biscuit.commands.BaseCommand;
import com.fpghoti.biscuit.commands.CommandType;
import com.fpghoti.biscuit.guild.BiscuitGuild;
import net.dv8tion.jda.api.events.message.MessageReceivedEvent;
@@ -15,9 +15,9 @@ public class CustomCommand extends BaseCommand {
}
private String name;
private Biscuit biscuit;
private BiscuitGuild biscuit;
public CustomCommand(String name, Biscuit biscuit) {
public CustomCommand(String name, BiscuitGuild biscuit) {
this.name = name;
this.biscuit = biscuit;
}