diff options
author | Charles Krinke | 2008-10-08 14:51:55 +0000 |
---|---|---|
committer | Charles Krinke | 2008-10-08 14:51:55 +0000 |
commit | ac443559d119ef2aed5a7e1469e091d5197b358c (patch) | |
tree | 47fc136cee98b85e80fcd5da7a9a671e9e5b49e1 /OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |
parent | adding OSHttpResponse test case (yeah, very primitive still) (diff) | |
download | opensim-SC_OLD-ac443559d119ef2aed5a7e1469e091d5197b358c.zip opensim-SC_OLD-ac443559d119ef2aed5a7e1469e091d5197b358c.tar.gz opensim-SC_OLD-ac443559d119ef2aed5a7e1469e091d5197b358c.tar.bz2 opensim-SC_OLD-ac443559d119ef2aed5a7e1469e091d5197b358c.tar.xz |
Mantis#2354. Thank you kindly, Tglion for a patch that:
The average-value of modify.ModifyBlock.Height in LLClientView.cs:4170
seem to be incorrect or it isn't the average? Mhhh...
So the terrain build -> Flaten Sphere is unuseable.
I have put in a patch that contains a workaround while
the main problem is not solved.
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index d2f46e5..b2138aa 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -4179,6 +4179,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
4179 | handlerModifyTerrain = OnModifyTerrain; | 4179 | handlerModifyTerrain = OnModifyTerrain; |
4180 | if (handlerModifyTerrain != null) | 4180 | if (handlerModifyTerrain != null) |
4181 | { | 4181 | { |
4182 | modify.ModifyBlock.Height = -1; // Hack, i don't know why the value is wrong | ||
4182 | handlerModifyTerrain(modify.ModifyBlock.Height, modify.ModifyBlock.Seconds, | 4183 | handlerModifyTerrain(modify.ModifyBlock.Height, modify.ModifyBlock.Seconds, |
4183 | modify.ModifyBlock.BrushSize, | 4184 | modify.ModifyBlock.BrushSize, |
4184 | modify.ModifyBlock.Action, modify.ParcelData[i].North, | 4185 | modify.ModifyBlock.Action, modify.ParcelData[i].North, |