aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/xmod/bartcrops/abstracts/BaseAestheticCrop.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/bartcrops/abstracts/BaseAestheticCrop.java')
-rw-r--r--src/main/java/gtPlusPlus/xmod/bartcrops/abstracts/BaseAestheticCrop.java55
1 files changed, 27 insertions, 28 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/bartcrops/abstracts/BaseAestheticCrop.java b/src/main/java/gtPlusPlus/xmod/bartcrops/abstracts/BaseAestheticCrop.java
index f62b429acb..41631eaae8 100644
--- a/src/main/java/gtPlusPlus/xmod/bartcrops/abstracts/BaseAestheticCrop.java
+++ b/src/main/java/gtPlusPlus/xmod/bartcrops/abstracts/BaseAestheticCrop.java
@@ -4,34 +4,33 @@ import gtPlusPlus.preloader.CORE_Preloader;
import ic2.api.crops.ICropTile;
public abstract class BaseAestheticCrop extends BaseHarvestableCrop {
-
- public int tier() {
- return 1;
- }
- public int stat(int n) {
- switch (n) {
- case 0 :
- return 0;
- case 1 :
- return 0;
- case 2 :
- return 0;
- case 3 :
- return 4;
- case 4 :
- return 0;
- default :
- return 0;
- }
- }
+ public int tier() {
+ return 1;
+ }
- public int growthDuration(ICropTile crop) {
- return CORE_Preloader.DEBUG_MODE ? 1 : 225;
- }
+ public int stat(int n) {
+ switch (n) {
+ case 0:
+ return 0;
+ case 1:
+ return 0;
+ case 2:
+ return 0;
+ case 3:
+ return 4;
+ case 4:
+ return 0;
+ default:
+ return 0;
+ }
+ }
- public byte getSizeAfterHarvest(ICropTile crop) {
- return 1;
- }
-
-} \ No newline at end of file
+ public int growthDuration(ICropTile crop) {
+ return CORE_Preloader.DEBUG_MODE ? 1 : 225;
+ }
+
+ public byte getSizeAfterHarvest(ICropTile crop) {
+ return 1;
+ }
+}