diff options
Diffstat (limited to 'OpenSim/Data/MySQL/MySQLSimulationData.cs')
-rw-r--r-- | OpenSim/Data/MySQL/MySQLSimulationData.cs | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/OpenSim/Data/MySQL/MySQLSimulationData.cs b/OpenSim/Data/MySQL/MySQLSimulationData.cs index a62d347..46364a5 100644 --- a/OpenSim/Data/MySQL/MySQLSimulationData.cs +++ b/OpenSim/Data/MySQL/MySQLSimulationData.cs | |||
@@ -187,7 +187,8 @@ namespace OpenSim.Data.MySQL | |||
187 | "LinkNumber, MediaURL, KeyframeMotion, AttachedPosX, " + | 187 | "LinkNumber, MediaURL, KeyframeMotion, AttachedPosX, " + |
188 | "AttachedPosY, AttachedPosZ, " + | 188 | "AttachedPosY, AttachedPosZ, " + |
189 | "PhysicsShapeType, Density, GravityModifier, " + | 189 | "PhysicsShapeType, Density, GravityModifier, " + |
190 | "Friction, Restitution, Vehicle, DynAttrs " + | 190 | "Friction, Restitution, Vehicle, DynAttrs, " + |
191 | "RotationAxisLocks" + | ||
191 | ") values (" + "?UUID, " + | 192 | ") values (" + "?UUID, " + |
192 | "?CreationDate, ?Name, ?Text, " + | 193 | "?CreationDate, ?Name, ?Text, " + |
193 | "?Description, ?SitName, ?TouchName, " + | 194 | "?Description, ?SitName, ?TouchName, " + |
@@ -223,7 +224,8 @@ namespace OpenSim.Data.MySQL | |||
223 | "?LinkNumber, ?MediaURL, ?KeyframeMotion, ?AttachedPosX, " + | 224 | "?LinkNumber, ?MediaURL, ?KeyframeMotion, ?AttachedPosX, " + |
224 | "?AttachedPosY, ?AttachedPosZ, " + | 225 | "?AttachedPosY, ?AttachedPosZ, " + |
225 | "?PhysicsShapeType, ?Density, ?GravityModifier, " + | 226 | "?PhysicsShapeType, ?Density, ?GravityModifier, " + |
226 | "?Friction, ?Restitution, ?Vehicle, ?DynAttrs)"; | 227 | "?Friction, ?Restitution, ?Vehicle, ?DynAttrs," + |
228 | "?RotationAxisLocks)"; | ||
227 | 229 | ||
228 | FillPrimCommand(cmd, prim, obj.UUID, regionUUID); | 230 | FillPrimCommand(cmd, prim, obj.UUID, regionUUID); |
229 | 231 | ||
@@ -1353,7 +1355,8 @@ namespace OpenSim.Data.MySQL | |||
1353 | prim.GravityModifier = (float)(double)row["GravityModifier"]; | 1355 | prim.GravityModifier = (float)(double)row["GravityModifier"]; |
1354 | prim.Friction = (float)(double)row["Friction"]; | 1356 | prim.Friction = (float)(double)row["Friction"]; |
1355 | prim.Restitution = (float)(double)row["Restitution"]; | 1357 | prim.Restitution = (float)(double)row["Restitution"]; |
1356 | 1358 | prim.RotationAxisLocks = (byte)Convert.ToInt32(row["RotationAxisLocks"].ToString()); | |
1359 | |||
1357 | SOPVehicle vehicle = null; | 1360 | SOPVehicle vehicle = null; |
1358 | 1361 | ||
1359 | if (row["Vehicle"].ToString() != String.Empty) | 1362 | if (row["Vehicle"].ToString() != String.Empty) |
@@ -1735,6 +1738,7 @@ namespace OpenSim.Data.MySQL | |||
1735 | cmd.Parameters.AddWithValue("GravityModifier", (double)prim.GravityModifier); | 1738 | cmd.Parameters.AddWithValue("GravityModifier", (double)prim.GravityModifier); |
1736 | cmd.Parameters.AddWithValue("Friction", (double)prim.Friction); | 1739 | cmd.Parameters.AddWithValue("Friction", (double)prim.Friction); |
1737 | cmd.Parameters.AddWithValue("Restitution", (double)prim.Restitution); | 1740 | cmd.Parameters.AddWithValue("Restitution", (double)prim.Restitution); |
1741 | cmd.Parameters.AddWithValue("RotationAxisLocks", prim.RotationAxisLocks); | ||
1738 | } | 1742 | } |
1739 | 1743 | ||
1740 | /// <summary> | 1744 | /// <summary> |