本文整理汇总了Java中net.minecraft.block.BlockHopper.func_149917_c方法的典型用法代码示例。如果您正苦于以下问题:Java BlockHopper.func_149917_c方法的具体用法?Java BlockHopper.func_149917_c怎么用?Java BlockHopper.func_149917_c使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.minecraft.block.BlockHopper
的用法示例。
在下文中一共展示了BlockHopper.func_149917_c方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: func_145887_i
import net.minecraft.block.BlockHopper; //导入方法依赖的package包/类
public boolean func_145887_i()
{
if (this.worldObj != null && !this.worldObj.isClient)
{
if (!this.func_145888_j() && BlockHopper.func_149917_c(this.getBlockMetadata()))
{
boolean var1 = this.func_145883_k();
var1 = func_145891_a(this) || var1;
if (var1)
{
this.func_145896_c(8);
this.onInventoryChanged();
return true;
}
}
return false;
}
else
{
return false;
}
}
示例2: func_145887_i
import net.minecraft.block.BlockHopper; //导入方法依赖的package包/类
public boolean func_145887_i()
{
if (this.worldObj != null && !this.worldObj.isRemote)
{
if (!this.func_145888_j() && BlockHopper.func_149917_c(this.getBlockMetadata()))
{
boolean flag = false;
if (!this.func_152104_k())
{
flag = this.func_145883_k();
}
if (!this.func_152105_l())
{
flag = func_145891_a(this) || flag;
}
if (flag)
{
this.func_145896_c(8);
this.markDirty();
return true;
}
}
return false;
}
else
{
return false;
}
}
开发者ID:jtrent238,项目名称:PopularMMOS-EpicProportions-Mod,代码行数:34,代码来源:TileEntityBlockChristmasPresents_Red.java
示例3: func_145887_i
import net.minecraft.block.BlockHopper; //导入方法依赖的package包/类
public boolean func_145887_i()
{
if (this.worldObj != null && !this.worldObj.isRemote)
{
if (!this.func_145888_j() && BlockHopper.func_149917_c(this.getBlockMetadata()))
{
boolean flag = false;
if (!this.func_152104_k())
{
flag = this.func_145883_k();
}
if (!this.func_152105_l())
{
flag = func_145891_a(this) || flag;
}
if (flag)
{
this.func_145896_c(this.worldObj.getSpigotConfig().hopperTransfer); // Spigot // Cauldron
this.markDirty();
return true;
}
}
// Spigot start
if (!this.func_145888_j())
{
this.func_145896_c(this.worldObj.getSpigotConfig().hopperCheck); // Cauldron
}
// Spigot end
return false;
}
else
{
return false;
}
}