diff options
Diffstat (limited to 'src/game/Vehicle.cpp')
-rw-r--r-- | src/game/Vehicle.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/Vehicle.cpp b/src/game/Vehicle.cpp index f2d023300fe..4ef4781add0 100644 --- a/src/game/Vehicle.cpp +++ b/src/game/Vehicle.cpp @@ -247,7 +247,7 @@ bool Vehicle::AddPassenger(Unit *unit, int8 seatNum) { ((Player*)unit)->SetCharm(this, true); ((Player*)unit)->SetViewpoint(this, true); - ((Player*)unit)->SetMover(this); + //((Player*)unit)->SetMover(this); ((Player*)unit)->VehicleSpellInitialize(); } @@ -286,7 +286,7 @@ void Vehicle::RemovePassenger(Unit *unit) { ((Player*)unit)->SetCharm(this, false); ((Player*)unit)->SetViewpoint(this, false); - ((Player*)unit)->SetMover(unit); + //((Player*)unit)->SetMover(unit); ((Player*)unit)->SendRemoveControlBar(); } |