diff options
| author | Jason Mitchell <mitchej@gmail.com> | 2021-09-06 10:44:11 -0700 |
|---|---|---|
| committer | Jason Mitchell <mitchej@gmail.com> | 2021-09-06 10:44:11 -0700 |
| commit | d4be334d82116c6ba822e1ef1a66d9f000e0e2fa (patch) | |
| tree | 1c9f72e02926d8abdb48026b7e2d180f2c2faab2 /src | |
| parent | 72f4cd20af5461c71c92bfa93c5f3f9a1df6aa2b (diff) | |
| download | GT5-Unofficial-d4be334d82116c6ba822e1ef1a66d9f000e0e2fa.tar.gz GT5-Unofficial-d4be334d82116c6ba822e1ef1a66d9f000e0e2fa.tar.bz2 GT5-Unofficial-d4be334d82116c6ba822e1ef1a66d9f000e0e2fa.zip | |
Make BW_MetaGeneratedBlocks_Casing implement ICustomBlockSetting from both TecTech (Unclear if this is still used) & structlib
Former-commit-id: cccc1f30487ad3b7120f63588456c6deb6e9dd2c
Diffstat (limited to 'src')
| -rw-r--r-- | src/main/java/com/github/bartimaeusnek/bartworks/system/material/BW_MetaGeneratedBlocks_Casing.java | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/main/java/com/github/bartimaeusnek/bartworks/system/material/BW_MetaGeneratedBlocks_Casing.java b/src/main/java/com/github/bartimaeusnek/bartworks/system/material/BW_MetaGeneratedBlocks_Casing.java index 74a40e6a28..c892ead1d9 100644 --- a/src/main/java/com/github/bartimaeusnek/bartworks/system/material/BW_MetaGeneratedBlocks_Casing.java +++ b/src/main/java/com/github/bartimaeusnek/bartworks/system/material/BW_MetaGeneratedBlocks_Casing.java @@ -22,7 +22,6 @@ package com.github.bartimaeusnek.bartworks.system.material; -import com.github.technus.tectech.mechanics.structure.ICustomBlockSetting; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import gregtech.api.GregTech_API; @@ -41,8 +40,9 @@ import net.minecraft.world.World; import java.util.List; import java.util.Optional; -@cpw.mods.fml.common.Optional.Interface(modid = "tectech", striprefs = true, iface = "com.github.technus.tectech.mechanics.structure.ICustomBlockSetting") -public class BW_MetaGeneratedBlocks_Casing extends BW_MetaGenerated_Blocks implements ICustomBlockSetting { +public class BW_MetaGeneratedBlocks_Casing extends BW_MetaGenerated_Blocks implements com.github.technus.tectech.mechanics.structure.ICustomBlockSetting, + com.gtnewhorizon.structurelib.structure.ICustomBlockSetting +{ public BW_MetaGeneratedBlocks_Casing(Material p_i45386_1_, Class<? extends TileEntity> tileEntity, String blockName, OrePrefixes prefixes) { super(p_i45386_1_, tileEntity, blockName, prefixes); @@ -128,9 +128,8 @@ public class BW_MetaGeneratedBlocks_Casing extends BW_MetaGenerated_Blocks imple } /** - * DEBUG Method for TT-Blueprints! + * ICustomBlockSetting setBlock override */ - @cpw.mods.fml.common.Optional.Method(modid = "tectech") public void setBlock(World world, int x, int y, int z, int meta) { world.setBlock(x, y, z,this, meta,2); try { |
