package cutthecord.commands.commands; import androidx.annotation.Nullable; import cutthecord.commands.CommandHandler; import lanchon.dexpatcher.annotation.DexAdd; @DexAdd public class CmdLenny extends CommandHandler.Command { @DexAdd @Override public String handleCommand(String msg) { return msg + " ( ͡° ͜ʖ ͡°)"; } @DexAdd @Nullable @Override public String getPopupInfo() { return null; } }