This commit is contained in:
DESKTOP-SAJ6RKV\Administrator 2025-05-19 18:17:33 +08:00
parent d7f12f20e6
commit 2901466d10

View File

@ -54,7 +54,10 @@ namespace GameLogic
// 设置游戏时长 // 设置游戏时长
m_GameTimerLen = EventConts.gameLenTiemr; m_GameTimerLen = EventConts.gameLenTiemr;
m_GameTimerLen = GameModule.Setting.GetInt("gameLenTiemrId"); if (GameModule.Setting.GetInt("gameLenTiemrId") != 0)
{
m_GameTimerLen = GameModule.Setting.GetInt("gameLenTiemrId");
}
// 设置数据同步 // 设置数据同步
GiftEffectBool = GameModule.Setting.GetBool("GiftEffect"); GiftEffectBool = GameModule.Setting.GetBool("GiftEffect");