|
|
@@ -19,6 +19,11 @@ export default class GuideWeakData {
|
|
|
*/
|
|
|
public init() {
|
|
|
// this.data_config = data_config;
|
|
|
+ if (gData.gameData.configs.ServerConfig.triggerTime)
|
|
|
+ this.data_config.triggerTime = gData.gameData.configs.ServerConfig.triggerTime;
|
|
|
+ if (gData.gameData.configs.ServerConfig.panelWeight) {
|
|
|
+
|
|
|
+ }
|
|
|
}
|
|
|
/**
|
|
|
* 星云数据配置
|
|
|
@@ -26,7 +31,7 @@ export default class GuideWeakData {
|
|
|
* - 触发时间
|
|
|
*/
|
|
|
public data_config = {
|
|
|
- "panelWeight": {
|
|
|
+ panelWeight: {
|
|
|
"1": 10,
|
|
|
"2": 10,
|
|
|
"4": 10,
|
|
|
@@ -34,7 +39,7 @@ export default class GuideWeakData {
|
|
|
"6": 10,
|
|
|
"7": 10
|
|
|
},
|
|
|
- "triggerTime": 5
|
|
|
+ triggerTime: 5
|
|
|
}
|
|
|
/** 功能是否启动 */
|
|
|
public enable: boolean = false;
|