aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorMW2007-11-28 12:36:09 +0000
committerMW2007-11-28 12:36:09 +0000
commitac77c50ba9efb7755bd36e832a9a93fb25946a5f (patch)
treea44c901ebd0bb80ca04beccac537d05ffb42f4b4 /OpenSim/Framework/IClientAPI.cs
parent* Disambiguation in the 'sim is restarting message' that tells you 'which' si... (diff)
downloadopensim-SC_OLD-ac77c50ba9efb7755bd36e832a9a93fb25946a5f.zip
opensim-SC_OLD-ac77c50ba9efb7755bd36e832a9a93fb25946a5f.tar.gz
opensim-SC_OLD-ac77c50ba9efb7755bd36e832a9a93fb25946a5f.tar.bz2
opensim-SC_OLD-ac77c50ba9efb7755bd36e832a9a93fb25946a5f.tar.xz
Moved the m_sceneGridService.RegisterRegion(RegionInfo); call out of LoadWorldMap and into its own public method (which is called during region creation). We shouldn't have things like that in methods like LoadWorldMap as some regions might not being having a worldmap loaded via the LoadWorldMap method (like in custom applications).
Deleted the CreateTerrainTextureInitial Method which was a 99% duplicate of CreateTerrainTexture, with just a bool field setting difference. That bool is now passed to CreateTerrainTexture as a param.
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r--OpenSim/Framework/IClientAPI.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 3f0c87a..e94b9aa 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -426,7 +426,7 @@ namespace OpenSim.Framework
426 void SendRegionTeleport(ulong regionHandle, byte simAccess, IPEndPoint regionExternalEndPoint, uint locationID, 426 void SendRegionTeleport(ulong regionHandle, byte simAccess, IPEndPoint regionExternalEndPoint, uint locationID,
427 uint flags, string capsURL); 427 uint flags, string capsURL);
428 428
429 void SendTeleportCancel(); 429 void SendTeleportFailed();
430 void SendTeleportLocationStart(); 430 void SendTeleportLocationStart();
431 void SendMoneyBalance(LLUUID transaction, bool success, byte[] description, int balance); 431 void SendMoneyBalance(LLUUID transaction, bool success, byte[] description, int balance);
432 432