mirror of
https://gitea.tendokyu.moe/beerpsi/sinmai-mods.git
synced 2024-12-01 02:27:22 +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;
|
|
}
|
|
} |