diff options
author | Charles Krinke | 2008-09-25 14:57:40 +0000 |
---|---|---|
committer | Charles Krinke | 2008-09-25 14:57:40 +0000 |
commit | 339671afc67f9b6ce036733b7b746c572d78ddc3 (patch) | |
tree | ac3fd0b65a9a195151ec9990c0bcfab7b1c77686 /OpenSim/Region/ClientStack | |
parent | Fixes an exception that is seen on regions running XEngine, where DNE (diff) | |
download | opensim-SC_OLD-339671afc67f9b6ce036733b7b746c572d78ddc3.zip opensim-SC_OLD-339671afc67f9b6ce036733b7b746c572d78ddc3.tar.gz opensim-SC_OLD-339671afc67f9b6ce036733b7b746c572d78ddc3.tar.bz2 opensim-SC_OLD-339671afc67f9b6ce036733b7b746c572d78ddc3.tar.xz |
Mantis#2017. Thank you kindly, Tyre, for a patch that solves:
Check the client dialog box (from top menu) WORLD / REGION ESTATE
/ REGION tab. The client dialog box seems to have a hard limit of
about 32 characters per line available for displaying the region
version number. Our regions are sending a string which is greater
than the limit, causing the client to wrap the text and look ugly.
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index 3a90cff..e21bf7c 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -86,7 +86,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
86 | 86 | ||
87 | private int m_animationSequenceNumber = 1; | 87 | private int m_animationSequenceNumber = 1; |
88 | 88 | ||
89 | private byte[] m_channelVersion = Utils.StringToBytes("OpenSimulator 0.5"); // Dummy value needed by libSL | 89 | private byte[] m_channelVersion = Utils.StringToBytes("OpenSimulator Server"); // Dummy value needed by libSL |
90 | 90 | ||
91 | private Dictionary<string, UUID> m_defaultAnimations = new Dictionary<string, UUID>(); | 91 | private Dictionary<string, UUID> m_defaultAnimations = new Dictionary<string, UUID>(); |
92 | 92 | ||