diff options
Diffstat (limited to 'OpenSim/Region/Physics/ChOdePlugin/ODEPrim.cs')
-rw-r--r-- | OpenSim/Region/Physics/ChOdePlugin/ODEPrim.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/ChOdePlugin/ODEPrim.cs b/OpenSim/Region/Physics/ChOdePlugin/ODEPrim.cs index fb6cb55..e3ac315 100644 --- a/OpenSim/Region/Physics/ChOdePlugin/ODEPrim.cs +++ b/OpenSim/Region/Physics/ChOdePlugin/ODEPrim.cs | |||
@@ -2442,6 +2442,14 @@ Console.WriteLine(" JointCreateFixed"); | |||
2442 | m_vehicle.ProcessRotationVehicleParam((Vehicle) param, rotation); | 2442 | m_vehicle.ProcessRotationVehicleParam((Vehicle) param, rotation); |
2443 | } | 2443 | } |
2444 | 2444 | ||
2445 | public override void VehicleFlags(int flags, bool remove) | ||
2446 | { | ||
2447 | if (!remove) | ||
2448 | VehicleFlagsSet(flags); | ||
2449 | else | ||
2450 | VehicleFlagsRemove(flags); | ||
2451 | } | ||
2452 | |||
2445 | public override void VehicleFlagsSet(int flags) | 2453 | public override void VehicleFlagsSet(int flags) |
2446 | { | 2454 | { |
2447 | m_vehicle.ProcessFlagsVehicleSet(flags); | 2455 | m_vehicle.ProcessFlagsVehicleSet(flags); |