From 6fb32733f27b8a38cd9fed38419ae3ff9343a3d1 Mon Sep 17 00:00:00 2001 From: Bukkit/Spigot Date: Sat, 6 Oct 2018 10:55:06 +1000 Subject: [PATCH] Clarify Colorable docs further By: md_5 --- paper-api/src/main/java/org/bukkit/material/Colorable.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/paper-api/src/main/java/org/bukkit/material/Colorable.java b/paper-api/src/main/java/org/bukkit/material/Colorable.java index 0c0f714052..f34ebc674e 100644 --- a/paper-api/src/main/java/org/bukkit/material/Colorable.java +++ b/paper-api/src/main/java/org/bukkit/material/Colorable.java @@ -10,7 +10,8 @@ public interface Colorable { /** * Gets the color of this object. *
- * This may be null to represent the default color of an object. + * This may be null to represent the default color of an object, if the + * object has a special default color (e.g Shulkers). * * @return The DyeColor of this object. */ @@ -19,7 +20,8 @@ public interface Colorable { /** * Sets the color of this object to the specified DyeColor. *
- * This may be null to represent the default color of an object. + * This may be null to represent the default color of an object, if the + * object has a special default color (e.g Shulkers). * * @param color The color of the object, as a DyeColor. */