mirror of
https://github.com/Minestom/Minestom.git
synced 2024-12-28 12:07:42 +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
|
||||
*/
|
||||
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