diff options
Diffstat (limited to 'bin/lib/OsikaEvaluator.php')
-rw-r--r-- | bin/lib/OsikaEvaluator.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/lib/OsikaEvaluator.php b/bin/lib/OsikaEvaluator.php index e373536..3e74c7e 100644 --- a/bin/lib/OsikaEvaluator.php +++ b/bin/lib/OsikaEvaluator.php @@ -79,6 +79,9 @@ class OsikaEvaluator { return 0; } $count = $this->_countHonors($suit); + if (!$count) { + return 0; + } // H sec = -1/8 of a trick; Hx = -1/16 of a trick; HH sec = -1/8 of a trick return $count * (($length === 1) ? -0.125 : -0.0625); } |