diff --git a/modules/util/plot.py b/modules/util/plot.py
index 571a4d5ddcc962094a11f10a623862b001becac2..c7856f1ce6ed08a7fa4a4cb4f0c29aa8a0750ff3 100644
--- a/modules/util/plot.py
+++ b/modules/util/plot.py
@@ -239,7 +239,7 @@ def make_icing_image(clvrx_file, ice_lons, ice_lats, ice_lons_vld=None, ice_lats
     ax.add_feature(ccrs.cartopy.feature.STATES, linewidth=0.25)
     ax.scatter(ice_lons, ice_lats, s=10.0, marker='o', color='blue', transform=ccrs.PlateCarree())
     if ice_lats_vld is not None:
-        ax.scatter(ice_lons_vld, ice_lats_vld, s=20.0, marker='o', color='blue', transform=ccrs.PlateCarree())
+        ax.scatter(ice_lons_vld, ice_lats_vld, s=20.0, marker='o', color='red', transform=ccrs.PlateCarree())
     plt.title('GOES-16, 2019-04-30_18:26Z  >60% Probability Icing', loc='left', fontweight='bold', fontsize=15)
     ImageDirAndName = os.path.join('/Users/tomrink', filename)
     fig.savefig(ImageDirAndName)