@jtff/miztemplate-lib 3.3.1 → 3.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lua/src/130-airboss.lua +3 -3
- package/package.json +1 -1
package/lua/src/130-airboss.lua
CHANGED
|
@@ -156,8 +156,8 @@ function startRecoveryOnDemand(objAirboss)
|
|
|
156
156
|
objAirboss:SetMaxSectionSize(1)
|
|
157
157
|
end
|
|
158
158
|
objAirboss:AddRecoveryWindow(
|
|
159
|
-
UTILS.SecondsToClock(timer.getAbsTime() +
|
|
160
|
-
UTILS.SecondsToClock(timer.getAbsTime() + ((objAirboss.customconfig.recoveryops.ondemand.recovery_duration_minutes or 30) * 60),false, false),
|
|
159
|
+
UTILS.SecondsToClock(timer.getAbsTime() + 10 * 60, false, false),
|
|
160
|
+
UTILS.SecondsToClock(timer.getAbsTime() + 10 * 60 + ((objAirboss.customconfig.recoveryops.ondemand.recovery_duration_minutes or 30) * 60),false, false),
|
|
161
161
|
effectiveeventcase,
|
|
162
162
|
objAirboss.customconfig.menurecovery.offset,
|
|
163
163
|
true,
|
|
@@ -219,7 +219,7 @@ for index, airbossconfig in ipairs(AirBossConfig) do
|
|
|
219
219
|
if (airbossconfig.recoveryops.mode == 'ondemand') then
|
|
220
220
|
MENU_COALITION_COMMAND:New(
|
|
221
221
|
airbossconfig.coalition,
|
|
222
|
-
"OnDemand Recovery : start in 5 minutes",
|
|
222
|
+
"OnDemand Recovery : will start turning in 5 minutes",
|
|
223
223
|
objAirboss.menuObject,
|
|
224
224
|
startRecoveryOnDemand,
|
|
225
225
|
objAirboss
|