diff options
author | Jason Mitchell <mitchej@gmail.com> | 2023-01-30 10:56:42 -0800 |
---|---|---|
committer | Jason Mitchell <mitchej@gmail.com> | 2023-01-30 10:56:42 -0800 |
commit | 0d9aab72aa570f13dc3e32e0d32b3f3a95f95e0a (patch) | |
tree | 1e2c649f3a6ce3f6b2babd0098a5f4819e9cd0b6 /src/main/java/speiger | |
parent | f8cc82edeb9810c45cba762d733a2c909a302faa (diff) | |
download | GT5-Unofficial-0d9aab72aa570f13dc3e32e0d32b3f3a95f95e0a.tar.gz GT5-Unofficial-0d9aab72aa570f13dc3e32e0d32b3f3a95f95e0a.tar.bz2 GT5-Unofficial-0d9aab72aa570f13dc3e32e0d32b3f3a95f95e0a.zip |
[ci skip] spotlessApply with the new settings
Diffstat (limited to 'src/main/java/speiger')
-rw-r--r-- | src/main/java/speiger/src/crops/api/ICropCardInfo.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/speiger/src/crops/api/ICropCardInfo.java b/src/main/java/speiger/src/crops/api/ICropCardInfo.java index a82a864f6e..b0768e15f9 100644 --- a/src/main/java/speiger/src/crops/api/ICropCardInfo.java +++ b/src/main/java/speiger/src/crops/api/ICropCardInfo.java @@ -1,16 +1,16 @@ package speiger.src.crops.api; import java.util.List; + import net.minecraft.item.ItemStack; /** * - * @author Speiger - * Class to add Informations from CropCards. - * This has Priorty over the ICropInfo + * @author Speiger Class to add Informations from CropCards. This has Priorty over the ICropInfo * @requirement: The class that implement this class need to extends CropCard */ public interface ICropCardInfo { + public List<String> getCropInformation(); public ItemStack getDisplayItem(); |