Skip to content

Commit

Permalink
更新依赖
Browse files Browse the repository at this point in the history
  • Loading branch information
Tesseract4D committed Dec 14, 2024
1 parent 79ec509 commit 8d43679
Show file tree
Hide file tree
Showing 13 changed files with 39 additions and 41 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ plugins {
id 'com.gtnewhorizons.gtnhconvention'
}

version = "1.5.4"
version = "1.6"
2 changes: 1 addition & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@
*/
dependencies {
runtimeOnlyNonPublishable("com.github.GTNewHorizons:NotEnoughItems:2.5.4-GTNH:dev")
implementation name: "+Mycelium-1.5.10-dev"
implementation name: "+Mycelium-2.0-dev"
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ modId = worleycaves

# Root package of the mod, used to find various classes in other properties,
# mcmod.info substitution, enabling assertions in run tasks, etc.
modGroup = mods.tesseract.worleycaves
modGroup = cn.tesseract.worleycaves

# Whether to use modGroup as the maven publishing group.
# Due to a history of using JitPack, the default is com.github.GTNewHorizons for all mods.
Expand Down
Binary file removed libs/+Mycelium-1.5.10-dev.jar
Binary file not shown.
Binary file added libs/+Mycelium-2.0-dev.jar
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
package mods.tesseract.worleycaves;
package cn.tesseract.worleycaves;


import cn.tesseract.worleycaves.event.CaveEvent;
import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.Mod.EventHandler;
import cpw.mods.fml.common.event.FMLPreInitializationEvent;
import mods.tesseract.worleycaves.config.Configs;
import mods.tesseract.worleycaves.event.CaveEvent;
import cn.tesseract.worleycaves.config.Configs;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.common.config.Configuration;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

@Mod(modid = "worleycaves", name = "Worley Caves", version = "1.5.4", acceptableRemoteVersions = "*", dependencies = "required-after:mycelium@[1.5.10,)")
@Mod(modid = "worleycaves", name = "Worley Caves", version = "1.6", acceptableRemoteVersions = "*", dependencies = "required-after:mycelium@[2.0,)")
public class Main
{
public static final Logger LOGGER = LogManager.getLogger("worleycaves");
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mods.tesseract.worleycaves.config;
package cn.tesseract.worleycaves.config;


public class Configs
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package mods.tesseract.worleycaves.event;
package cn.tesseract.worleycaves.event;

import mods.tesseract.worleycaves.world.WorleyCaveGenerator;
import cn.tesseract.worleycaves.world.WorleyCaveGenerator;
import cpw.mods.fml.common.eventhandler.EventPriority;
import cpw.mods.fml.common.eventhandler.SubscribeEvent;
import net.minecraftforge.event.terraingen.InitMapGenEvent;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
// off every 'zix'.)
//

package mods.tesseract.worleycaves.util;
package cn.tesseract.worleycaves.util;

import javax.vecmath.Vector2f;
import javax.vecmath.Vector3f;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mods.tesseract.worleycaves.util;
package cn.tesseract.worleycaves.util;

public class WorleyUtil {
private int m_seed = 1337;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package mods.tesseract.worleycaves.world;
package cn.tesseract.worleycaves.world;


import mods.tesseract.mycelium.util.BlockPos;
import mods.tesseract.mycelium.world.ChunkPrimer;
import mods.tesseract.worleycaves.Main;
import mods.tesseract.worleycaves.config.Configs;
import mods.tesseract.worleycaves.util.FastNoise;
import mods.tesseract.worleycaves.util.WorleyUtil;
import cn.tesseract.mycelium.util.BlockPos;
import cn.tesseract.mycelium.world.ChunkPrimer;
import cn.tesseract.worleycaves.Main;
import cn.tesseract.worleycaves.config.Configs;
import cn.tesseract.worleycaves.util.FastNoise;
import cn.tesseract.worleycaves.util.WorleyUtil;
import net.minecraft.block.Block;
import net.minecraft.block.BlockLiquid;
import net.minecraft.block.material.Material;
Expand Down Expand Up @@ -431,8 +431,9 @@ protected void digBlock(ChunkPrimer data, int x, int y, int z, int chunkX, int c
//replace floating sand with sandstone
if (up == Blocks.sand) {
data.setBlockState(x, y + 1, z, Blocks.sandstone);
} else if (up == Blocks.gravel) {
data.setBlockState(x, y + 1, z, filler);
}

}
}
}
Expand Down
32 changes: 18 additions & 14 deletions src/main/resources/mcmod.info
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
[
{
"modid": "worleycaves",
"name": "Worley's Caves",
"description": "Cave generation with Worley noise",
"version": "1.5.3",
"mcversion": "1.12.2",
"url": "",
"updateUrl": "",
"authorList": ["SuperFluke", "booleanbyte"],
"credits": "",
"logoFile": "",
"screenshots": [],
"dependencies": []
}
{
"modid": "worleycaves",
"name": "Worley's Caves",
"description": "Cave generation with Worley noise",
"version": "1.6",
"mcversion": "1.7.10",
"url": "",
"updateUrl": "",
"authorList": [
"Tesseract",
"SuperFluke",
"booleanbyte"
],
"credits": "",
"logoFile": "",
"screenshots": [],
"dependencies": []
}
]
7 changes: 0 additions & 7 deletions src/main/resources/pack.mcmeta

This file was deleted.

0 comments on commit 8d43679

Please sign in to comment.