This commit is contained in:
Dragon Fire
2021-01-16 13:11:08 -05:00
parent 7f9fdfb2f6
commit 8c180ad558
+1 -1
View File
@@ -178,7 +178,7 @@ module.exports = class Util {
static rgbToHex(r, g, b) {
if (r > 255 || g > 255 || b > 255) return null;
return ((r << 16) | (g << 8) | b).toString(16);
return ((r << 16) | (g << 8) | b).toString(16);
}
static magikToBuffer(magik) {