switch ((Integer) this.data.get(0))
{
case 0:
if (tile instanceof TileEntityLaunchController)
{
TileEntityLaunchController launchController = (TileEntityLaunchController) tile;
launchController.setFrequency((Integer) this.data.get(4));
}
break;
case 1:
if (tile instanceof TileEntityLaunchController)
{
TileEntityLaunchController launchController = (TileEntityLaunchController) tile;
launchController.setLaunchDropdownSelection((Integer) this.data.get(4));
}
break;
case 2:
if (tile instanceof TileEntityLaunchController)
{
TileEntityLaunchController launchController = (TileEntityLaunchController) tile;
launchController.setDestinationFrequency((Integer) this.data.get(4));
}
break;
case 3:
if (tile instanceof TileEntityLaunchController)
{
TileEntityLaunchController launchController = (TileEntityLaunchController) tile;
launchController.launchPadRemovalDisabled = (Integer) this.data.get(4) == 1;
}
break;
case 4:
if (tile instanceof TileEntityLaunchController)
{
TileEntityLaunchController launchController = (TileEntityLaunchController) tile;
launchController.setLaunchSchedulingEnabled((Integer) this.data.get(4) == 1);
}
break;
case 5:
if (tile instanceof TileEntityLaunchController)
{
TileEntityLaunchController launchController = (TileEntityLaunchController) tile;
launchController.requiresClientUpdate = true;
}
break;
default:
break;