mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 08:06:27 +08:00
Bug fix in object serialization -- sculpt data was wrong.
This commit is contained in:
@@ -1318,7 +1318,7 @@ namespace OpenSim.Region.Framework.Scenes.Serialization
|
||||
writer.WriteStartElement("SculptData");
|
||||
byte[] sd;
|
||||
if (shp.SculptData != null)
|
||||
sd = shp.ExtraParams;
|
||||
sd = shp.SculptData;
|
||||
else
|
||||
sd = Utils.EmptyBytes;
|
||||
writer.WriteBase64(sd, 0, sd.Length);
|
||||
|
||||
Reference in New Issue
Block a user