🐐
This commit is contained in:
@@ -4,7 +4,7 @@ import logging
|
||||
from dataclasses import dataclass
|
||||
from enum import Enum
|
||||
from itertools import combinations, permutations
|
||||
import numpy as np, permutations
|
||||
import numpy as np
|
||||
from card import Card
|
||||
from game import action_play_card, action_sacrifice, action_end_turn, BOARD_SIZE, STARTING_LIFE, PlayerState
|
||||
|
||||
@@ -391,7 +391,7 @@ async def run_ai_turn(game_id: str):
|
||||
best_plan = await choose_plan(player, opponent, personality, difficulty)
|
||||
|
||||
logger.info(
|
||||
f"AI turn: d={difficulty} p={personality.value} plan={best_plan.label} plans={len(plans)} " +
|
||||
f"AI turn: d={difficulty} p={personality.value} plan={best_plan.label} " +
|
||||
f"sac={best_plan.sacrifice_slots} plays={[c.name for c, _ in best_plan.plays]}"
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user