diff options
author | Teravus Ovares | 2007-11-26 05:02:18 +0000 |
---|---|---|
committer | Teravus Ovares | 2007-11-26 05:02:18 +0000 |
commit | 175b6115f19f9bad7c81fde625250b3a7f8a33f2 (patch) | |
tree | f907f3b409eca34017f6e18dcf4d644b623d0302 /OpenSim/Framework/IScene.cs | |
parent | Added Region name to the terrain texture description that gets sent to the as... (diff) | |
download | opensim-SC-175b6115f19f9bad7c81fde625250b3a7f8a33f2.zip opensim-SC-175b6115f19f9bad7c81fde625250b3a7f8a33f2.tar.gz opensim-SC-175b6115f19f9bad7c81fde625250b3a7f8a33f2.tar.bz2 opensim-SC-175b6115f19f9bad7c81fde625250b3a7f8a33f2.tar.xz |
* Restarting regions with the estate tools works in sandbox mode. I'm still working on grid mode, however. It doesn't break anything, but that feature doesn't work in grid mode yet either.
Diffstat (limited to 'OpenSim/Framework/IScene.cs')
-rw-r--r-- | OpenSim/Framework/IScene.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/OpenSim/Framework/IScene.cs b/OpenSim/Framework/IScene.cs index 0e4d260..5507500 100644 --- a/OpenSim/Framework/IScene.cs +++ b/OpenSim/Framework/IScene.cs | |||
@@ -30,7 +30,7 @@ using libsecondlife; | |||
30 | namespace OpenSim.Framework | 30 | namespace OpenSim.Framework |
31 | { | 31 | { |
32 | public delegate void restart( RegionInfo thisRegion ); | 32 | public delegate void restart( RegionInfo thisRegion ); |
33 | public delegate void regionup ( RegionInfo thisRegion ); | 33 | //public delegate void regionup ( RegionInfo thisRegion ); |
34 | 34 | ||
35 | public enum RegionStatus : int | 35 | public enum RegionStatus : int |
36 | { | 36 | { |
@@ -43,13 +43,12 @@ namespace OpenSim.Framework | |||
43 | public interface IScene | 43 | public interface IScene |
44 | { | 44 | { |
45 | event restart OnRestart; | 45 | event restart OnRestart; |
46 | event regionup OnRegionUp; | ||
47 | 46 | ||
48 | void AddNewClient(IClientAPI client, bool child); | 47 | void AddNewClient(IClientAPI client, bool child); |
49 | void RemoveClient(LLUUID agentID); | 48 | void RemoveClient(LLUUID agentID); |
50 | 49 | ||
51 | void Restart(int seconds); | 50 | void Restart(int seconds); |
52 | void OtherRegionUp(RegionInfo thisRegion); | 51 | bool OtherRegionUp(RegionInfo thisRegion); |
53 | 52 | ||
54 | RegionInfo RegionInfo { get; } | 53 | RegionInfo RegionInfo { get; } |
55 | uint NextLocalId { get; } | 54 | uint NextLocalId { get; } |