* @param block to play at
* @param arg1 for the action
* @param arg2 for the action
*/
public static void playBlockAction(Block block, byte arg1, byte arg2) {
BlockActionEvent event = new BlockActionEvent(block, block.getMaterial(), arg1, arg2);
for (Player player : block.getChunk().getObservingPlayers()) {
player.getNetwork().callProtocolEvent(event, player);
}
}