Skip to content

Commit e8a022c

Browse files
committed
[修复]1. 修复使用Init初始化配置的时候的报错处理
#38
1 parent ebedca7 commit e8a022c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GameFrameX.StartUp/AppStartUpBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public bool Init(ServerType serverType, AppSetting setting, string[] args = null
4949
Setting = setting;
5050
Init();
5151
Setting.CheckNotNull(nameof(Setting));
52-
GlobalSettings.SetCurrentSetting(setting);
52+
GlobalSettings.SetCurrentSetting(Setting);
5353
return true;
5454
}
5555

0 commit comments

Comments
 (0)