aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorUbitUmarov2019-02-01 18:43:39 +0000
committerUbitUmarov2019-02-01 18:43:39 +0000
commit2f3101e1d21bab45bfbd5cdfda33c9c03ac69f38 (patch)
treed9b5ca62b3ba536fabda82f59e0cd67bbf536d4b
parentplace a global cooldown of 2 min on god map generation (diff)
downloadopensim-SC-2f3101e1d21bab45bfbd5cdfda33c9c03ac69f38.zip
opensim-SC-2f3101e1d21bab45bfbd5cdfda33c9c03ac69f38.tar.gz
opensim-SC-2f3101e1d21bab45bfbd5cdfda33c9c03ac69f38.tar.bz2
opensim-SC-2f3101e1d21bab45bfbd5cdfda33c9c03ac69f38.tar.xz
typos, thx
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs2
-rw-r--r--bin/OpenSim.ini.example2
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
index e35b463..b7d5a80 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
@@ -10174,7 +10174,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
10174 double now = Util.GetTimeStamp(); 10174 double now = Util.GetTimeStamp();
10175 if (now - m_lastMapRegenTime < 120) // 2 minutes global cool down 10175 if (now - m_lastMapRegenTime < 120) // 2 minutes global cool down
10176 { 10176 {
10177 SendAlertMessage("Please wait at least 2 minutes between map generation comand"); 10177 SendAlertMessage("Please wait at least 2 minutes between map generation commands");
10178 return true; 10178 return true;
10179 } 10179 }
10180 10180
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example
index 02c9958..8b77ee9 100644
--- a/bin/OpenSim.ini.example
+++ b/bin/OpenSim.ini.example
@@ -419,7 +419,7 @@
419 419
420 ; if next 2 are false, several admin powers are only active if god powers requested on viewer 420 ; if next 2 are false, several admin powers are only active if god powers requested on viewer
421 ; this reduces mistakes 421 ; this reduces mistakes
422 ; set both to true to enable previus behavour 422 ; set both to true to enable previous behaviour
423 automatic_gods = false 423 automatic_gods = false
424 implicit_gods = false 424 implicit_gods = false
425 425