-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7074d43
commit 9f330d2
Showing
58 changed files
with
88 additions
and
702 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 0 additions & 24 deletions
24
src/main/java/jayceecreates/earlygame/mixin/CopperOreGenMixin.java
This file was deleted.
Oops, something went wrong.
104 changes: 0 additions & 104 deletions
104
src/main/java/jayceecreates/earlygame/mixin/StickTwigGenMixin.java
This file was deleted.
Oops, something went wrong.
104 changes: 0 additions & 104 deletions
104
src/main/java/jayceecreates/earlygame/mixin/StoneRockGenMixin.java
This file was deleted.
Oops, something went wrong.
17 changes: 4 additions & 13 deletions
17
src/main/java/jayceecreates/earlygame/utils/ModConfiguredFeatures.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,19 @@ | ||
package jayceecreates.earlygame.utils; | ||
|
||
import net.minecraft.util.Identifier; | ||
import net.minecraft.util.registry.BuiltinRegistries; | ||
import net.minecraft.util.registry.Registry; | ||
import net.minecraft.world.gen.feature.ConfiguredFeature; | ||
import net.minecraft.world.gen.feature.ConfiguredFeatures; | ||
import net.minecraft.world.gen.feature.FeatureConfig; | ||
|
||
public class ModConfiguredFeatures { | ||
public static final ConfiguredFeature<?, ?> ROCK_BLOCK = Registry.register( | ||
BuiltinRegistries.CONFIGURED_FEATURE, | ||
new Identifier("earlygame", "rock_block_gen"), | ||
public static final ConfiguredFeature<?, ?> ROCK_BLOCK = | ||
ModFeature.ROCK_BLOCK_FEATURE | ||
.configure(FeatureConfig.DEFAULT) | ||
.decorate(ConfiguredFeatures.Decorators.SQUARE_HEIGHTMAP) | ||
.repeat(4) | ||
); | ||
.repeat(4); | ||
|
||
public static final ConfiguredFeature<?, ?> STICK_TWIG = Registry.register( | ||
BuiltinRegistries.CONFIGURED_FEATURE, | ||
new Identifier("earlygame", "stick_twig_gen"), | ||
public static final ConfiguredFeature<?, ?> STICK_TWIG = | ||
ModFeature.STICK_TWIG_FEATURE | ||
.configure(FeatureConfig.DEFAULT) | ||
.decorate(ConfiguredFeatures.Decorators.SQUARE_HEIGHTMAP) | ||
.repeat(3) | ||
); | ||
.repeat(3); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.