diff options
| author | GlodBlock <1356392126@qq.com> | 2021-10-08 16:20:17 +0800 |
|---|---|---|
| committer | GlodBlock <1356392126@qq.com> | 2021-10-08 16:20:17 +0800 |
| commit | 898bcf1e0bd0d8121d76ca1fea068f5c03d9cbea (patch) | |
| tree | 4b04d3cdd25436645f1880b34e98829d71fdb4a4 /src/main/java/GoodGenerator/Blocks/TEs | |
| parent | fbb20b2e0368bd114c17eeee1d0d71986ca435a8 (diff) | |
| download | GT5-Unofficial-898bcf1e0bd0d8121d76ca1fea068f5c03d9cbea.tar.gz GT5-Unofficial-898bcf1e0bd0d8121d76ca1fea068f5c03d9cbea.tar.bz2 GT5-Unofficial-898bcf1e0bd0d8121d76ca1fea068f5c03d9cbea.zip | |
replace tectech hint methods
Diffstat (limited to 'src/main/java/GoodGenerator/Blocks/TEs')
| -rw-r--r-- | src/main/java/GoodGenerator/Blocks/TEs/FuelRefineFactory.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/GoodGenerator/Blocks/TEs/FuelRefineFactory.java b/src/main/java/GoodGenerator/Blocks/TEs/FuelRefineFactory.java index 49954c3055..a4f448af35 100644 --- a/src/main/java/GoodGenerator/Blocks/TEs/FuelRefineFactory.java +++ b/src/main/java/GoodGenerator/Blocks/TEs/FuelRefineFactory.java @@ -8,6 +8,7 @@ import com.github.technus.tectech.TecTech; import com.github.technus.tectech.thing.metaTileEntity.hatch.GT_MetaTileEntity_Hatch_EnergyMulti; import com.github.technus.tectech.thing.metaTileEntity.hatch.GT_MetaTileEntity_Hatch_EnergyTunnel; import com.github.technus.tectech.thing.metaTileEntity.multi.base.GT_MetaTileEntity_MultiblockBase_EM; +import com.gtnewhorizon.structurelib.StructureLibAPI; import com.gtnewhorizon.structurelib.alignment.constructable.IConstructable; import com.gtnewhorizon.structurelib.structure.IStructureDefinition; import com.gtnewhorizon.structurelib.structure.IStructureElement; @@ -147,7 +148,7 @@ public class FuelRefineFactory extends GT_MetaTileEntity_MultiblockBase_EM imple @Override public boolean spawnHint(T t, World world, int x, int y, int z, ItemStack trigger) { - TecTech.proxy.hint_particle(world, x, y, z, coils[getIndex(trigger)], 0); + StructureLibAPI.hintParticle(world, x, y, z, coils[getIndex(trigger)], 0); return true; } |
