diff --git a/src/main/java/io/github/thebusybiscuit/slimefun4/api/geo/GEOResource.java b/src/main/java/io/github/thebusybiscuit/slimefun4/api/geo/GEOResource.java index d82ead855..2bd9f2765 100644 --- a/src/main/java/io/github/thebusybiscuit/slimefun4/api/geo/GEOResource.java +++ b/src/main/java/io/github/thebusybiscuit/slimefun4/api/geo/GEOResource.java @@ -29,17 +29,19 @@ public interface GEOResource { ItemStack getItem(); /** - * Measurement Unit e.g. "Buckets" + * Measurement Unit e.g. "Bucket" / "Buckets". + * Use the amount parameter to determine whether to use singular or plural. * * @return The Measurement Unit for this resource, will be treated like a suffix. */ - String getMeasurementUnit(); + String getMeasurementUnit(int amount); /** - * Returns whether this Resource is considered a liquid. + * Returns whether this Resource can be obtained using a GEO Miner. + * This will automatically add it to the GEO - Miner. * - * @return Whether this is a liquid. + * @return Whether you can get obtain this resource using a GEO Miner. */ - boolean isLiquid(); + boolean isObtainableFromGEOMiner(); }