Ensure that the territory property is accepted

This commit is contained in:
Savanni D'Gerinel 2024-03-21 22:48:53 -04:00
parent bd6d5b62e3
commit a5990a2a30
1 changed files with 3 additions and 0 deletions

View File

@ -407,6 +407,9 @@ impl TryFrom<&parser::Node> for MoveNode {
}
s.annotation = Some(*annotation)
}
parser::Property::Territory(..) => {
eprintln!("not processing territory property");
}
parser::Property::Unknown(UnknownProperty { ident, value }) => {
s.unknown_props.push((ident.clone(), value.clone()));
}