|
@@ -419,10 +419,15 @@ void Galaxy::save(void) {
|
|
|
for (auto const &data : n) {
|
|
|
if (data.second.Type() == YAML::NodeType::Scalar) {
|
|
|
of << yaml_spacer << data.first << ": " << data.second << std::endl;
|
|
|
- } else {
|
|
|
+ } else if (data.second.Type() == YAML::NodeType::Map) {
|
|
|
// nested
|
|
|
of << yaml_spacer << data.first << ":" << std::endl;
|
|
|
yaml_out(of, yaml_depth + 1, data.second);
|
|
|
+ } else if (data.second.Type() == YAML::NodeType::Sequence) {
|
|
|
+ // sequence
|
|
|
+ BUGZ_LOG(fatal) << "Ignoring Sequence... " << data.first;
|
|
|
+ } else {
|
|
|
+ BUGZ_LOG(fatal) << "Unsupported NodeType: " << data.second.Type();
|
|
|
}
|
|
|
}
|
|
|
};
|