/*:
* @plugindesc Allows you to script events which allow players to get off a vehicle into impassible terrain with Player Through ON.
* @author Ben Hendel-Doying
*/

(function() {
GetOffWithMoveThrough_Game_Vehicle_isLandOk = Game_Vehicle.prototype.isLandOk;

Game_Vehicle.prototype.isLandOk = function(x, y, d) {
if($gamePlayer._through)
return true;
else
return GetOffWithMoveThrough_Game_Vehicle_isLandOk.call(this, x, y, d);
};
});