|
@@ -23,11 +23,11 @@ namespace ET.Server
|
|
|
string configFilePath;
|
|
|
if (startConfigs.Contains(configType.Name))
|
|
|
{
|
|
|
- configFilePath = $"../Config/Excel/s/{Options.Instance.StartConfig}/{configType.Name}.bytes";
|
|
|
+ configFilePath = $"../Config/GenFromExcel/s/{Options.Instance.StartConfig}/{configType.Name}.bytes";
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- configFilePath = $"../Config/Excel/s/{configType.Name}.bytes";
|
|
|
+ configFilePath = $"../Config/GenFromExcel/s/{configType.Name}.bytes";
|
|
|
}
|
|
|
output[configType] = File.ReadAllBytes(configFilePath);
|
|
|
}
|
|
@@ -41,7 +41,7 @@ namespace ET.Server
|
|
|
{
|
|
|
public override byte[] Handle(ConfigComponent.GetOneConfigBytes args)
|
|
|
{
|
|
|
- byte[] configBytes = File.ReadAllBytes($"../Config/{args.ConfigName}.bytes");
|
|
|
+ byte[] configBytes = File.ReadAllBytes($"../Config/GenFromExcel/{args.ConfigName}.bytes");
|
|
|
return configBytes;
|
|
|
}
|
|
|
}
|