Update battle_arena.py
Browse files- battle_arena.py +2 -1
battle_arena.py
CHANGED
|
@@ -632,4 +632,5 @@ def decide_npc_choice(ai_identity: str, title: str, option_a: str, option_b: str
|
|
| 632 |
return 'B'
|
| 633 |
|
| 634 |
# 기본: 랜덤 (70% 확률로 A)
|
| 635 |
-
return 'A' if random.random() < 0.7 else 'B'
|
|
|
|
|
|
| 632 |
return 'B'
|
| 633 |
|
| 634 |
# 기본: 랜덤 (70% 확률로 A)
|
| 635 |
+
return 'A' if random.random() < 0.7 else 'B'
|
| 636 |
+
|