aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework
diff options
context:
space:
mode:
authorMelanie2012-06-07 16:32:07 +0200
committerMelanie2012-06-07 16:32:07 +0200
commite93308072ea8ec106e429dc8071795018b58a75a (patch)
tree51fbcd7bb9821166b0d87b0011841e3f8ffce740 /OpenSim/Region/Framework
parentMake timed bans / timed passes work as expected. Prevent transmission of media (diff)
downloadopensim-SC_OLD-e93308072ea8ec106e429dc8071795018b58a75a.zip
opensim-SC_OLD-e93308072ea8ec106e429dc8071795018b58a75a.tar.gz
opensim-SC_OLD-e93308072ea8ec106e429dc8071795018b58a75a.tar.bz2
opensim-SC_OLD-e93308072ea8ec106e429dc8071795018b58a75a.tar.xz
Make the "delay restart" button delay restart for 1 hour rather than aborting
it altogether. Allow a maximum of three uses before the restart goes through.
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r--OpenSim/Region/Framework/Interfaces/IRestartModule.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IRestartModule.cs b/OpenSim/Region/Framework/Interfaces/IRestartModule.cs
index c68550f..9b25beb 100644
--- a/OpenSim/Region/Framework/Interfaces/IRestartModule.cs
+++ b/OpenSim/Region/Framework/Interfaces/IRestartModule.cs
@@ -35,5 +35,6 @@ namespace OpenSim.Region.Framework.Interfaces
35 TimeSpan TimeUntilRestart { get; } 35 TimeSpan TimeUntilRestart { get; }
36 void ScheduleRestart(UUID initiator, string message, int[] alerts, bool notice); 36 void ScheduleRestart(UUID initiator, string message, int[] alerts, bool notice);
37 void AbortRestart(string message); 37 void AbortRestart(string message);
38 void DelayRestart(int seconds, string message);
38 } 39 }
39} 40}