Update calculate_fan.py

pull/1/head
wsy182 2024-11-30 16:53:47 +08:00
parent 705afd596b
commit 066436b4e5
1 changed files with 10 additions and 10 deletions

View File

@ -43,12 +43,12 @@ def calculate_fan(hand, melds, is_self_draw, is_cleared, conditions):
conditions.get("is_small_pairs", False) or
conditions.get("is_clear_seven_pairs", False) or
conditions.get("is_full_request", False) or
conditions.get("is_rob_gang", False)) else 0,
conditions.get("is_rob_gang", False) or
conditions.get("is_under_the_sea", False))
else 0,
}
print("\nCalculating fan...")
# 逐一应用规则
for rule, func in rules.items():