diff --git a/pyfpdb/DerivedStats.py b/pyfpdb/DerivedStats.py index 1f5a933e..c76c9f08 100644 --- a/pyfpdb/DerivedStats.py +++ b/pyfpdb/DerivedStats.py @@ -289,7 +289,7 @@ class DerivedStats(): def vpip(self, hand): vpipers = set() for act in hand.actions[hand.actionStreets[1]]: - if act[1] in ('calls','bets', 'raises'): + if act[1] in ('calls','bets', 'raises', 'completes'): vpipers.add(act[0]) self.hands['playersVpi'] = len(vpipers)