Option to only include the 1st emote

krillian

New member
Pronouns
he/him
hi!! i'm editing the scolling chat (with emotes only option) and i'd love if there was a way to only include the first emote out of every message. i'd have edited it on my own but i'm not sure how
 
Upvote 0
I guess if you'd want an easy way to do that you could add this to the CSS:
CSS:
.emote:not(:first-of-type) {
  display: none;
}
 
Back
Top