Package net.minecraft.block

Examples of net.minecraft.block.EnumMobType


  }
 
  @SuppressWarnings("rawtypes")
  public static boolean onPressurePlateInteract(BlockPressurePlate pp, World world, int x, int y, int z) {
    Class<? extends BlockPressurePlate> clazz = pp.getClass();
    EnumMobType type;
    try {
      Field f = clazz.getField(ObfuscationHelper.getRelevantMappings().get("blockPressurePlate_triggerMobType_fieldName"));
      f.setAccessible(true);
      type = (EnumMobType) f.get(pp);
    } catch (Exception e) {
View Full Code Here

TOP

Related Classes of net.minecraft.block.EnumMobType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.