Java-Twirk icon indicating copy to clipboard operation
Java-Twirk copied to clipboard

TwitchUser getColor

Open ghost opened this issue 2 years ago • 2 comments

Whenever I use the sender.getColor() method inside of onPrivMsg(TwitchUser sender, TwitchMessage message), it returns a number that is not a valid hex value

ghost avatar Mar 06 '22 03:03 ghost

Do you got some examples?

The code for this part is dead simple: it just take whatever twitch sends us and assigns it to a field, so I'd be interested in what you see.

Gikkman avatar May 23 '22 09:05 Gikkman

Whenever I use the sender.getColor() method inside of onPrivMsg(TwitchUser sender, TwitchMessage message), it returns a number that is not a valid hex value

The conversion from int to a hex code is String.format("#%06x", colorInt)

e3ndr avatar Jul 25 '22 03:07 e3ndr