Skip to content
This repository was archived by the owner on Jul 16, 2023. It is now read-only.

Commit 8215fef

Browse files
committed
Update to gt 2.2.3 + ver 0.2.1
1 parent 4d2c29d commit 8215fef

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

build.gradle.kts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ apply {
2727
val mcVersion = "1.12.2"
2828
val forgeVersion = "14.23.5.2847"
2929
val mcFullVersion = "$mcVersion-$forgeVersion"
30-
val modVersion = "0.2.0-beta"
30+
val modVersion = "0.2.1-beta"
3131
version = "$mcVersion-$modVersion"
3232
group = "net.htmlcsjs.htmlTech"
3333

@@ -58,6 +58,9 @@ repositories {
5858
name = "tterrag maven"
5959
setUrl("https://maven.tterrag.com/")
6060
}
61+
maven {
62+
setUrl("https://cursemaven.com")
63+
}
6164
maven {
6265
name = "CraftTweaker Maven"
6366
setUrl("https://maven.blamejared.com/")
@@ -66,7 +69,7 @@ repositories {
6669

6770
dependencies {
6871
"deobfCompile"("mezz.jei:jei_1.12.2:+")
69-
"provided"(files("libs/gregtech-1.12.2-2.2.0-beta.jar"))
72+
"deobfCompile"("curse.maven:ceu-557242:3784798")
7073
"deobfCompile"("codechicken-lib-1-8:CodeChickenLib-1.12.2:3.2.3.358:universal")
7174
"deobfCompile"("codechicken:ChickenASM:1.12-1.0.2.9")
7275
"deobfCompile"("mcjty.theoneprobe:TheOneProbe-1.12:1.12-1.4.23-16")
-12.5 MB
Binary file not shown.

src/main/java/net/htmlcsjs/htmlTech/common/blocks/BlockHTCasing.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package net.htmlcsjs.htmlTech.common.blocks;
22

3-
import gregtech.common.blocks.VariantBlock;
3+
import gregtech.api.block.VariantBlock;
44
import net.minecraft.block.SoundType;
55
import net.minecraft.block.material.Material;
66
import net.minecraft.block.state.IBlockState;

src/main/java/net/htmlcsjs/htmlTech/common/laserpipe/net/LaserNetWalker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public static List<LaserRoutePath> createNetData(World world, BlockPos sourcePip
3232
}
3333

3434
@Override
35-
protected PipeNetWalker createSubWalker(World world, BlockPos blockPos, int walkedBlocks) {
35+
protected PipeNetWalker createSubWalker(World world, EnumFacing enumFacing, BlockPos blockPos, int walkedBlocks) {
3636
LaserNetWalker walker = new LaserNetWalker(world, blockPos, walkedBlocks, routes);
3737
walker.pipes = new HashSet<>(pipes);
3838
return walker;

src/main/java/net/htmlcsjs/htmlTech/proxy/CommonProxy.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package net.htmlcsjs.htmlTech.proxy;
22

33
import gregtech.api.GregTechAPI;
4-
import gregtech.common.blocks.VariantItemBlock;
4+
import gregtech.api.block.VariantItemBlock;
55
import net.htmlcsjs.htmlTech.HtmlTech;
66
import net.htmlcsjs.htmlTech.api.HTValues;
77
import net.htmlcsjs.htmlTech.api.unification.materials.HTMaterials;
@@ -30,7 +30,6 @@ public void preLoad() {
3030
}
3131

3232
public void init() {
33-
3433
}
3534

3635
@SubscribeEvent

0 commit comments

Comments
 (0)