mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-03-14 05:35:35 +00:00
29 lines
764 B
Java
29 lines
764 B
Java
package com.hbm.blocks.machine.rbmk;
|
|
|
|
import com.hbm.tileentity.TileEntityProxyCombo;
|
|
import com.hbm.tileentity.machine.rbmk.TileEntityRBMKBoiler;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.tileentity.TileEntity;
|
|
import net.minecraft.world.World;
|
|
|
|
public class RBMKBoiler extends RBMKPipedBase {
|
|
|
|
@Override
|
|
public TileEntity createNewTileEntity(World world, int meta) {
|
|
|
|
if(meta >= this.offset)
|
|
return new TileEntityRBMKBoiler();
|
|
|
|
if(hasExtra(meta))
|
|
return new TileEntityProxyCombo(false, 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 openInv(world, x, y, z, player);
|
|
}
|
|
}
|