Merge commit '3c8e294fd35563abbf53316d100d9f900e2b5b5a'

This commit is contained in:
Darth Vader 2024-12-06 16:49:25 +00:00
commit b4a1f672db

View File

@ -2312,6 +2312,15 @@ tidy_species(void)
}
/* store sequence number in master structure */
master[i]->number = i;
if (master[i]->s == NULL)
{
input_error++;
error_string = sformatf(
"Species pointer is null for, %s. Check your _MASTER_ and _SPECIES definitions.",
master[i]->elt->name);
error_msg(error_string, STOP);
}
if (strcmp(master[i]->elt->name, "Alkalinity") != 0)
{
if (master[i]->primary == TRUE)