diff --git a/sgf/src/game.rs b/sgf/src/game.rs index ad90d78..1b6a0cb 100644 --- a/sgf/src/game.rs +++ b/sgf/src/game.rs @@ -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())); }