aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main/java/io/github/cottonmc/cotton/gui/widget/data/Color.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/io/github/cottonmc/cotton/gui/widget/data/Color.java b/src/main/java/io/github/cottonmc/cotton/gui/widget/data/Color.java
index 9b78ae9..ff6eaa5 100644
--- a/src/main/java/io/github/cottonmc/cotton/gui/widget/data/Color.java
+++ b/src/main/java/io/github/cottonmc/cotton/gui/widget/data/Color.java
@@ -184,7 +184,7 @@ public interface Color {
* @param endColor a Color to interpolate with
* @param t fraction between 0.0 and 1.0
*
- * @since 2.0.0
+ * @since 2.3.0
*/
public RGB interpolate(RGB endColor, double t){
double a = (endColor.getA() - this.getA()) * t + this.getA();