Skip to content

Commit 7d94896

Browse files
Rename ChorusFruitPlantType to ChorusPlantPlantType
1 parent 90b52b4 commit 7d94896

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/main/java/net/wurstclient/hacks/autofarm/AutoFarmPlantTypeManager.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ public final class AutoFarmPlantTypeManager
2424
public final BeetrootsPlantType beetrootsType = new BeetrootsPlantType();
2525
public final CactusPlantType cactusType = new CactusPlantType();
2626
public final CarrotsPlantType carrotsType = new CarrotsPlantType();
27-
public final ChorusFruitPlantType chorusFruitType =
28-
new ChorusFruitPlantType();
27+
public final ChorusPlantPlantType chorusFruitType =
28+
new ChorusPlantPlantType();
2929
public final CocoaBeanPlantType cocoaBeanType = new CocoaBeanPlantType();
3030
public final GlowBerryPlantType glowBerryType = new GlowBerryPlantType();
3131
public final KelpPlantType kelpType = new KelpPlantType();

src/main/java/net/wurstclient/hacks/autofarm/plants/ChorusFruitPlantType.java renamed to src/main/java/net/wurstclient/hacks/autofarm/plants/ChorusPlantPlantType.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
import net.wurstclient.settings.PlantTypeSetting;
2828
import net.wurstclient.util.BlockUtils;
2929

30-
public final class ChorusFruitPlantType extends AutoFarmPlantType
30+
public final class ChorusPlantPlantType extends AutoFarmPlantType
3131
{
3232
private static final EnumMap<Direction, BooleanProperty> CHORUS_GROWING_DIRECTIONS =
3333
Maps.newEnumMap(Map.of(Direction.NORTH, ConnectingBlock.NORTH,
@@ -100,7 +100,7 @@ && hasAttachedFlowers(neighborPos, neighborState, visited))
100100
@Override
101101
protected PlantTypeSetting createSetting()
102102
{
103-
return new PlantTypeSetting("Chorus Fruit", Items.CHORUS_FRUIT, true,
103+
return new PlantTypeSetting("Chorus Plants", Items.CHORUS_FLOWER, true,
104104
true);
105105
}
106106
}

0 commit comments

Comments
 (0)