public ReactionCommand(string emote, AccessLevel requiredAccess, HandleReaction handleReaction)
 {
     Emote          = emote;
     RequiredAccess = requiredAccess;
     HandleReaction = handleReaction;
 }
Beispiel #2
0
 public ReactionCommand(string emote, HandleReaction handleReaction, bool isShitPosting = false)
 {
     Emote          = emote;
     HandleReaction = handleReaction;
     IsShitposting  = isShitPosting;
 }