summaryrefslogtreecommitdiff
path: root/src/bcdd
diff options
context:
space:
mode:
Diffstat (limited to 'src/bcdd')
-rw-r--r--src/bcdd/PBNBoard.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/bcdd/PBNBoard.py b/src/bcdd/PBNBoard.py
index 6e1abf6..e76252d 100644
--- a/src/bcdd/PBNBoard.py
+++ b/src/bcdd/PBNBoard.py
@@ -166,6 +166,11 @@ class PBNBoard(object):
def get_auction(self):
return self.get_extended_raw_field('Auction', with_header=True)
+ def get_play_data(self):
+ if self.has_field('Play'):
+ return self.get_extended_raw_field('Play', with_header=False)
+ return None
+
def get_extended_raw_field(self, field_name, with_header=False):
field_found = False
result = []