mirror of
https://asciireactor.com/otho/cloudy-agn.git
synced 2024-12-05 02:35:08 +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);
|
||||
header.append(inputline);
|
||||
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.cautions = cautions;
|
||||
|
Loading…
Reference in New Issue
Block a user