change to land.chipmunk.chayapak because yes

This commit is contained in:
ChomeNS
2023-03-27 12:53:05 +07:00
parent cb34dfff90
commit fbf9f3e2f1
70 changed files with 221 additions and 220 deletions

View File

@@ -1,28 +0,0 @@
package me.chayapak1.chomens_bot.command;
import lombok.Getter;
import me.chayapak1.chomens_bot.Bot;
import me.chayapak1.chomens_bot.chatParsers.data.MutablePlayerListEntry;
import net.kyori.adventure.text.Component;
public class CommandContext {
@Getter private final Bot bot;
@Getter private final String prefix;
@Getter private final MutablePlayerListEntry sender;
@Getter private final String hash;
@Getter private final String ownerHash;
public CommandContext(Bot bot, String prefix, MutablePlayerListEntry sender, String hash, String ownerHash) {
this.bot = bot;
this.prefix = prefix;
this.sender = sender;
this.hash = hash;
this.ownerHash = ownerHash;
}
public Component displayName () { return Component.empty(); }
public void sendOutput (Component component) {}
}