diff options
author | Justin Clark-Casey (justincc) | 2012-03-28 23:30:28 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-03-30 02:03:52 +0100 |
commit | 4a5c61a33ddad42adef34ad3b1f56980f91797f0 (patch) | |
tree | 0c76a4fb4c27b47aa2912290643e46cc3974868a | |
parent | Merge branch '0.7.3-post-fixes' of ssh://opensimulator.org/var/git/opensim in... (diff) | |
download | opensim-SC_OLD-4a5c61a33ddad42adef34ad3b1f56980f91797f0.zip opensim-SC_OLD-4a5c61a33ddad42adef34ad3b1f56980f91797f0.tar.gz opensim-SC_OLD-4a5c61a33ddad42adef34ad3b1f56980f91797f0.tar.bz2 opensim-SC_OLD-4a5c61a33ddad42adef34ad3b1f56980f91797f0.tar.xz |
Enable voice by default on parcels to weaken effects of viewer 2/3 ParcelVoiceInfoRequest bug
Viewer 2/3 contains a bug where the viewer will constantly retry ParcelVoiceInfoRequest requests on voice-disabled parcels where voice is otherwise available.
Attempts to fix this server-side have not been successful - sending a non-OK http code (e.g. a 404) just makes the viewer request again immediately.
Dropping the request entirely is a bit better but the viewer still retries after a minute.
Estate settings already enabled voice by default so doing the same for parcels. This only has an effect if you have any voice system active at all.
Ultimately, the re-request bug needs to be fixed viewer-side (LL suffers from the same issue!) but it might be worth implementing the drop request hack.
-rw-r--r-- | OpenSim/Framework/LandData.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/LandData.cs b/OpenSim/Framework/LandData.cs index f6271ef..bf2ecf2 100644 --- a/OpenSim/Framework/LandData.cs +++ b/OpenSim/Framework/LandData.cs | |||
@@ -69,7 +69,7 @@ namespace OpenSim.Framework | |||
69 | (uint) ParcelFlags.AllowAPrimitiveEntry | | 69 | (uint) ParcelFlags.AllowAPrimitiveEntry | |
70 | (uint) ParcelFlags.AllowDeedToGroup | (uint) ParcelFlags.AllowTerraform | | 70 | (uint) ParcelFlags.AllowDeedToGroup | (uint) ParcelFlags.AllowTerraform | |
71 | (uint) ParcelFlags.CreateObjects | (uint) ParcelFlags.AllowOtherScripts | | 71 | (uint) ParcelFlags.CreateObjects | (uint) ParcelFlags.AllowOtherScripts | |
72 | (uint) ParcelFlags.SoundLocal; | 72 | (uint) ParcelFlags.SoundLocal | (uint) ParcelFlags.AllowVoiceChat; |
73 | 73 | ||
74 | private byte _landingType = 0; | 74 | private byte _landingType = 0; |
75 | private string _name = "Your Parcel"; | 75 | private string _name = "Your Parcel"; |