mirror of
https://asciireactor.com/otho/cloudy-agn.git
synced 2025-04-04 13:05:44 +00:00
added warnings to cautions list.
This commit is contained in:
parent
6b4849f75c
commit
8eb4f3d014
@ -236,7 +236,9 @@ agn::cloudy_grid agn::read_cloudy_grid(std::ifstream& inputfile) {
|
|||||||
getline(inputfile,inputline);
|
getline(inputfile,inputline);
|
||||||
header.append(inputline);
|
header.append(inputline);
|
||||||
header.append("\n");
|
header.append("\n");
|
||||||
if(inputline[1] == 'C' && inputline[2] == '-') cautions.push_back(inputline);
|
if((inputline[1] == 'C' && inputline[2] == '-')
|
||||||
|
|| (inputline[1] == ' ' && inputline[2] == '!' ))
|
||||||
|
cautions.push_back(inputline);
|
||||||
}
|
}
|
||||||
point.header = header;
|
point.header = header;
|
||||||
point.cautions = cautions;
|
point.cautions = cautions;
|
||||||
|
Loading…
Reference in New Issue
Block a user