Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Commit

Permalink
yeeted fabric api and fixed biomes(at least i think so)
Browse files Browse the repository at this point in the history
  • Loading branch information
19MisterX98 committed Dec 22, 2020
1 parent 0fed524 commit 5ca2068
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 8 deletions.
3 changes: 0 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ dependencies {
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"

// Fabric API. This is technically optional, but you probably want it anyway.
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"

implementation('com.github.KaptainWutax:MathUtils:6c2d50eacad0241ff76119e6e703b70bac4b4bce') {transitive = false}
implementation('com.github.KaptainWutax:SeedUtils:0de70bc772fef95d8acfa6991e7278ee53a8b46c') {transitive = false}
implementation('com.github.KaptainWutax:BiomeUtils:62b374f2def7e09240447aceeb12a0a601b59a2b') {transitive = false}
Expand Down
3 changes: 0 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,3 @@ loader_version=0.10.8
mod_version=1.0-SNAPSHOT
maven_group=misterx
archives_base_name=diamondgen
# Dependencies
# check this on https://modmuss50.me/fabric.html
fabric_version=0.25.1+build.416-1.16
2 changes: 1 addition & 1 deletion src/main/java/misterx/diamondgen/StartGen.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public void getStartingPos(int BlockX, int BlockZ) {

public void ancienDebris(int BlockX,int BlockZ){
NetherBiomeSource netherBiomeSource = new NetherBiomeSource(MCVersion.v1_16_2,currentSeed);
Biome biome = netherBiomeSource.getBiome(BlockX,0,BlockZ);
Biome biome = netherBiomeSource.getBiome(BlockX+8,0,BlockZ+8);
int index = 15;
if(biome.getName().equals("warped_forest")) {
index = 13;
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
],
"depends": {
"fabricloader": ">=0.10.8",
"fabric": "*",
"minecraft": "1.16.4"
}
}

0 comments on commit 5ca2068

Please sign in to comment.