}
@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) {