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

Commit

Permalink
Update to gt 2.2.3 + ver 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
htmlcsjs committed May 10, 2022
1 parent 4d2c29d commit 8215fef
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
7 changes: 5 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ apply {
val mcVersion = "1.12.2"
val forgeVersion = "14.23.5.2847"
val mcFullVersion = "$mcVersion-$forgeVersion"
val modVersion = "0.2.0-beta"
val modVersion = "0.2.1-beta"
version = "$mcVersion-$modVersion"
group = "net.htmlcsjs.htmlTech"

Expand Down Expand Up @@ -58,6 +58,9 @@ repositories {
name = "tterrag maven"
setUrl("https://maven.tterrag.com/")
}
maven {
setUrl("https://cursemaven.com")
}
maven {
name = "CraftTweaker Maven"
setUrl("https://maven.blamejared.com/")
Expand All @@ -66,7 +69,7 @@ repositories {

dependencies {
"deobfCompile"("mezz.jei:jei_1.12.2:+")
"provided"(files("libs/gregtech-1.12.2-2.2.0-beta.jar"))
"deobfCompile"("curse.maven:ceu-557242:3784798")
"deobfCompile"("codechicken-lib-1-8:CodeChickenLib-1.12.2:3.2.3.358:universal")
"deobfCompile"("codechicken:ChickenASM:1.12-1.0.2.9")
"deobfCompile"("mcjty.theoneprobe:TheOneProbe-1.12:1.12-1.4.23-16")
Expand Down
Binary file removed libs/gregtech-1.12.2-2.2.0-beta.jar
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package net.htmlcsjs.htmlTech.common.blocks;

import gregtech.common.blocks.VariantBlock;
import gregtech.api.block.VariantBlock;
import net.minecraft.block.SoundType;
import net.minecraft.block.material.Material;
import net.minecraft.block.state.IBlockState;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public static List<LaserRoutePath> createNetData(World world, BlockPos sourcePip
}

@Override
protected PipeNetWalker createSubWalker(World world, BlockPos blockPos, int walkedBlocks) {
protected PipeNetWalker createSubWalker(World world, EnumFacing enumFacing, BlockPos blockPos, int walkedBlocks) {
LaserNetWalker walker = new LaserNetWalker(world, blockPos, walkedBlocks, routes);
walker.pipes = new HashSet<>(pipes);
return walker;
Expand Down
3 changes: 1 addition & 2 deletions src/main/java/net/htmlcsjs/htmlTech/proxy/CommonProxy.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package net.htmlcsjs.htmlTech.proxy;

import gregtech.api.GregTechAPI;
import gregtech.common.blocks.VariantItemBlock;
import gregtech.api.block.VariantItemBlock;
import net.htmlcsjs.htmlTech.HtmlTech;
import net.htmlcsjs.htmlTech.api.HTValues;
import net.htmlcsjs.htmlTech.api.unification.materials.HTMaterials;
Expand Down Expand Up @@ -30,7 +30,6 @@ public void preLoad() {
}

public void init() {

}

@SubscribeEvent
Expand Down

0 comments on commit 8215fef

Please sign in to comment.