diff options
author | Justin Clark-Casey (justincc) | 2011-11-19 01:16:07 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-11-19 01:16:07 +0000 |
commit | 10a23a823edb261af2c0b7895ce0898ea6918ef1 (patch) | |
tree | 9c3af81fea9986b58964fe3276ac337497a13435 /OpenSim/Data | |
parent | Enable v2/v3 map tile url setting on robust as default in config (diff) | |
download | opensim-SC_OLD-10a23a823edb261af2c0b7895ce0898ea6918ef1.zip opensim-SC_OLD-10a23a823edb261af2c0b7895ce0898ea6918ef1.tar.gz opensim-SC_OLD-10a23a823edb261af2c0b7895ce0898ea6918ef1.tar.bz2 opensim-SC_OLD-10a23a823edb261af2c0b7895ce0898ea6918ef1.tar.xz |
Get rid of the spurious [WEB UTIL] couldn't decode <OpenSim agent 57956c4b-ff2e-4fc1-9995-613c6256cc98>: Invalid character 'O' in input string messages
These are just the result of an attempt to canonicalize received messages - it's not important that we constantly log them.
Also finally get the deregister grid service message working properly
Diffstat (limited to 'OpenSim/Data')
-rw-r--r-- | OpenSim/Data/IRegionData.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/IRegionData.cs b/OpenSim/Data/IRegionData.cs index 0068daa..546b5e8 100644 --- a/OpenSim/Data/IRegionData.cs +++ b/OpenSim/Data/IRegionData.cs | |||
@@ -54,12 +54,12 @@ namespace OpenSim.Data | |||
54 | /// <summary> | 54 | /// <summary> |
55 | /// Return the x-coordinate of this region. | 55 | /// Return the x-coordinate of this region. |
56 | /// </summary> | 56 | /// </summary> |
57 | public int coordX { get { return (sizeX != 0) ? posX / (int)Constants.RegionSize : -1; } } | 57 | public int coordX { get { return posX / (int)Constants.RegionSize; } } |
58 | 58 | ||
59 | /// <summary> | 59 | /// <summary> |
60 | /// Return the y-coordinate of this region. | 60 | /// Return the y-coordinate of this region. |
61 | /// </summary> | 61 | /// </summary> |
62 | public int coordY { get { return (sizeY != 0) ? posY / (int)Constants.RegionSize : -1; } } | 62 | public int coordY { get { return posY / (int)Constants.RegionSize; } } |
63 | 63 | ||
64 | public Dictionary<string, object> Data; | 64 | public Dictionary<string, object> Data; |
65 | } | 65 | } |