mirror of
https://gitea.tendokyu.moe/beerpsi/sinmai-mods.git
synced 2025-03-02 08:01:25 +01:00
21 lines
394 B
C#
21 lines
394 B
C#
|
// ReSharper disable CheckNamespace
|
|||
|
// ReSharper disable InconsistentNaming
|
|||
|
|
|||
|
using MonoMod;
|
|||
|
|
|||
|
namespace Manager.Operation;
|
|||
|
|
|||
|
public class patch_MaintenanceTimer : MaintenanceTimer
|
|||
|
{
|
|||
|
[MonoModReplace]
|
|||
|
public new bool IsAutoRebootNeeded()
|
|||
|
{
|
|||
|
return false;
|
|||
|
}
|
|||
|
|
|||
|
[MonoModReplace]
|
|||
|
public new int GetAutoRebootSec()
|
|||
|
{
|
|||
|
return 86400;
|
|||
|
}
|
|||
|
}
|