2025-04-21 13:36:35 +08:00
|
|
|
function _Dps_SetEquipmentUnlockTime_Logic_() {
|
|
|
|
|
local Config = GlobalConfig.Get("设置装备解锁时间_Lenheart.json");
|
2025-04-05 22:03:40 +08:00
|
|
|
GameManager.SetItemLockTime(Config["设置装备解锁需要的冷却时间_单位秒"]);
|
2025-04-21 13:36:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function _Dps_SetEquipmentUnlockTime_Main_() {
|
|
|
|
|
_Dps_SetEquipmentUnlockTime_Logic_();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function _Dps_SetEquipmentUnlockTime_Main_Reload(OldConfig) {
|
|
|
|
|
_Dps_SetEquipmentUnlockTime_Logic_();
|
2025-04-05 22:03:40 +08:00
|
|
|
}
|