aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Agent
diff options
context:
space:
mode:
authorUbitUmarov2015-08-22 04:08:30 +0100
committerUbitUmarov2015-08-22 04:08:30 +0100
commite3d82ad706db04d295a549543380b71b00848f7f (patch)
tree5f03bf129f1bb1ce4c2189b72e383824d9e8204d /OpenSim/Region/OptionalModules/Agent
parent"uglyfy" GetModifiedPatchesInViewDistance. Also make it use camera or (diff)
downloadopensim-SC-e3d82ad706db04d295a549543380b71b00848f7f.zip
opensim-SC-e3d82ad706db04d295a549543380b71b00848f7f.tar.gz
opensim-SC-e3d82ad706db04d295a549543380b71b00848f7f.tar.bz2
opensim-SC-e3d82ad706db04d295a549543380b71b00848f7f.tar.xz
delay terrain sending if land queue is 2 busy
Diffstat (limited to 'OpenSim/Region/OptionalModules/Agent')
-rw-r--r--OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs
index 51ecc8d..89e18b0 100644
--- a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs
+++ b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs
@@ -997,6 +997,11 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server
997 997
998 } 998 }
999 999
1000 public virtual bool CanSendLayerData()
1001 {
1002 return false;
1003 }
1004
1000 public void SendLayerData(float[] map) 1005 public void SendLayerData(float[] map)
1001 { 1006 {
1002 1007