mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
35 lines
924 B
Java
35 lines
924 B
Java
package com.hbm.blocks.machine.rbmk;
|
|
|
|
import com.hbm.blocks.ModBlocks;
|
|
import com.hbm.tileentity.TileEntityProxyCombo;
|
|
import com.hbm.tileentity.machine.rbmk.TileEntityRBMKOutgasser;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.tileentity.TileEntity;
|
|
import net.minecraft.world.World;
|
|
|
|
public class RBMKOutgasser extends RBMKBase {
|
|
|
|
@Override
|
|
public TileEntity createNewTileEntity(World world, int meta) {
|
|
|
|
if(meta >= this.offset)
|
|
return new TileEntityRBMKOutgasser();
|
|
|
|
if(hasExtra(meta))
|
|
return new TileEntityProxyCombo(true, false, true);
|
|
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int side, float hitX, float hitY, float hitZ) {
|
|
return false; //return openInv(world, x, y, z, player, ModBlocks.guiID_rbmk_outgasser);
|
|
}
|
|
|
|
@Override
|
|
public int getRenderType(){
|
|
return this.renderIDPassive;
|
|
}
|
|
}
|