summaryrefslogtreecommitdiff
path: root/src/script/api/script_vehicle.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/script/api/script_vehicle.hpp')
-rw-r--r--src/script/api/script_vehicle.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/script/api/script_vehicle.hpp b/src/script/api/script_vehicle.hpp
index 024192b4d..cbf13f590 100644
--- a/src/script/api/script_vehicle.hpp
+++ b/src/script/api/script_vehicle.hpp
@@ -527,6 +527,16 @@ public:
*/
static int GetReliability(VehicleID vehicle_id);
+ /**
+ * Get the maximum allowed distance between two orders for a vehicle.
+ * @param vehicle_id The vehicle to get the distance for.
+ * @pre IsValidVehicle(vehicle_id).
+ * @return The maximum distance between two orders for this vehicle
+ * or 0 if the distance is unlimited.
+ * @see ScriptOrder::GetOrderDistance
+ */
+ static uint GetMaximumOrderDistance(VehicleID vehicle_id);
+
private:
/**
* Internal function used by SellWagon(Chain).