hackedBlocks.put(coord, iHackable);
}
public void trackEntity(Entity entity, IHackableEntity iHackable){
if(iHackable.getId() != null) {
HackingEntityProperties hackingProps = (HackingEntityProperties)entity.getExtendedProperties("PneumaticCraftHacking");
if(hackingProps != null) {
hackingProps.addHackable(iHackable);
} else {
Log.warning("Extended entity props HackingEntityProperties couldn't be found in the entity " + entity.getCommandSenderName());
}
}
}