aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/ChOdePlugin/ODEPrim.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Physics/ChOdePlugin/ODEPrim.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/ChOdePlugin/ODEPrim.cs b/OpenSim/Region/Physics/ChOdePlugin/ODEPrim.cs
index 8502aef..c2a6a9b 100644
--- a/OpenSim/Region/Physics/ChOdePlugin/ODEPrim.cs
+++ b/OpenSim/Region/Physics/ChOdePlugin/ODEPrim.cs
@@ -2416,6 +2416,14 @@ Console.WriteLine(" JointCreateFixed");
2416 m_vehicle.ProcessRotationVehicleParam((Vehicle) param, rotation); 2416 m_vehicle.ProcessRotationVehicleParam((Vehicle) param, rotation);
2417 } 2417 }
2418 2418
2419 public override void VehicleFlags(int flags, bool remove)
2420 {
2421 if (!remove)
2422 VehicleFlagsSet(flags);
2423 else
2424 VehicleFlagsRemove(flags);
2425 }
2426
2419 public override void VehicleFlagsSet(int flags) 2427 public override void VehicleFlagsSet(int flags)
2420 { 2428 {
2421 m_vehicle.ProcessFlagsVehicleSet(flags); 2429 m_vehicle.ProcessFlagsVehicleSet(flags);