Code help needed for project

 if (Liquid == 1)   {
    ...
  }

 if (Liquid == 0)   {
    ...
  }
  else
  {
    ...
  }

If Liquid equals 1, the first if evaluates to true so that block will be executed; next the second if evaluates to false so the associated else block will be executed.