mirror of
https://github.com/Minestom/Minestom.git
synced 2025-01-16 21:21:22 +01:00
Fix color constructor (#502)
This commit is contained in:
parent
9152c40753
commit
c5f4ce8515
@ -32,7 +32,7 @@ public class Color implements RGBLike {
|
|||||||
* @param rgbLike the color
|
* @param rgbLike the color
|
||||||
*/
|
*/
|
||||||
public Color(RGBLike rgbLike) {
|
public Color(RGBLike rgbLike) {
|
||||||
this(rgbLike.red(), rgbLike.blue(), rgbLike.green());
|
this(rgbLike.red(), rgbLike.green(), rgbLike.blue());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user