Skip to content

Commit 9261def

Browse files
committed
fix
1 parent 4a9d03c commit 9261def

3 files changed

Lines changed: 3 additions & 5 deletions

File tree

dependency/shell/docker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ while getopts ':cr' OPT; do
4242
-e TERMINAL=SERVER \
4343
-e SERVER_PORT="${SERVER_PORT:-8888}" \
4444
-e TEAM_COUNT="${TEAM_COUNT:-4}" \
45-
-e GAME_TIME_SEC="${GAME_TIME_SEC:-600}" \
45+
-e GAME_TIME="${GAME_TIME:-600}" \
4646
-p "${SERVER_PORT:-8888}:${SERVER_PORT:-8888}" \
4747
eesast/thuai9_server:latest
4848

dependency/shell/run.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,12 @@ fi
4545
: "${PORT:=8888}"
4646
: "${TEAM_COUNT:=2}"
4747
: "${CHARACTER_NUM:=6}"
48-
: "${GAME_TIME:=10}"
48+
: "${GAME_TIME:=600}"
4949
: "${EXPOSED:=1}"
5050
: "${TEAM_SEQ_ID:=0}"
5151
: "${TEAM_LABEL:=TeamA}"
5252
: "${CONNECT_IP:=172.17.0.1}"
5353

54-
GAME_TIME=$((GAME_TIME * 60))
55-
5654
# ═══════════════════════════════════════════════════════════════════════════
5755
# SERVER
5856
# ═══════════════════════════════════════════════════════════════════════════

logic/Preparation/Utility/GameData.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public static class GameData
152152
public const int BarrierRadius = NumOfPosGridPerCell / 2;
153153

154154
public static string API_key = "Mzg2MDU0MmEtNjcxZS00NjVkLTkxY2QtYTI3NzdjY2NhODU4";
155-
public static string API_url = "http://eesast.com/llm/chat";
155+
public static string API_url = "https://api.eesast.com/llm/chat";
156156
public static string ModelName = "deepseek-v4-pro";
157157
public const int AskAICostComputingPower = 10;
158158
public const int AskAIPromptMaxLength = 512;

0 commit comments

Comments
 (0)