This repository has been archived on 2021-08-24. You can view files and clone it, but cannot push or open issues or pull requests.
cutthecord/resources/patches/slashcommands/code/src/main/java/com/cutthecord/commands/commands/CmdSpoilerImg.java

18 lines
444 B
Java

package com.cutthecord.commands.commands;
import com.discord.stores.StoreStream;
public class CmdSpoilerImg {
public String handleCommand(String msg) {
// TODO StoreStream.getUserSettings().setImageSpoiler(true);
return msg;
}
public String getPopupInfo() {
return "Prepends SPOILER_ to names of all images attached to the message that starts with this, causing them to get marked as spoiler";
}
}