批量修改最后登录时间

This commit is contained in:
2025-07-21 08:28:59 +08:00
parent b2655bd9e9
commit 19c5233c49
8 changed files with 28 additions and 36 deletions

View File

@@ -218,7 +218,7 @@ func add_player_entry(player_data):
player_money.text = "金币: " + str(int(player_data.get("money", 0)))
player_seed_num.text = "种子: " + str(int(player_data.get("seed_count", 0)))
player_online_time.text = "游玩时间: " + player_data.get("total_login_time", "0时0分0秒")
player_last_login_time.text = "最后登录: " + player_data.get("last_login_time", "未知")
player_last_login_time.text = "最后登录: " + player_data.get("最后登录时间", "未知")
# 设置在线状态显示
var is_online = player_data.get("is_online", false)