package cutthecord.commands.commands; import androidx.annotation.Nullable; import cutthecord.commands.CommandHandler; import lanchon.dexpatcher.annotation.DexAdd; @DexAdd public class CmdLower extends CommandHandler.Command { @DexAdd @Override public String handleCommand(String msg) { return msg.toLowerCase(); } @DexAdd @Nullable @Override public String getPopupInfo() { return "Makes text lowercase"; } }