summaryrefslogtreecommitdiff
path: root/src/vehicle_type.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-12-01 22:18:51 +0000
committerrubidium <rubidium@openttd.org>2009-12-01 22:18:51 +0000
commit3a83eab967c09e728bb667e8794e905cc2d433de (patch)
treebc3b66458e6dcf258055698482f6b7cfc860f7fb /src/vehicle_type.h
parentd634f31c7b6d97762b1a793336ddaf2d9c12b96c (diff)
downloadopenttd-3a83eab967c09e728bb667e8794e905cc2d433de.tar.xz
(svn r18362) -Cleanup: remove OPF for RVs and NTP to clean up lots of code and simplify some things for the future
Diffstat (limited to 'src/vehicle_type.h')
-rw-r--r--src/vehicle_type.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/vehicle_type.h b/src/vehicle_type.h
index 1d99ea897..0ccc37e29 100644
--- a/src/vehicle_type.h
+++ b/src/vehicle_type.h
@@ -48,8 +48,7 @@ static const VehicleID INVALID_VEHICLE = 0xFFFF; ///< Constant representing a no
/** Pathfinding option states */
enum {
- VPF_OPF = 0, ///< The Original PathFinder
- VPF_NTP = 0, ///< New Train Pathfinder, replacing OPF for trains
+ VPF_OPF = 0, ///< The Original PathFinder (only for ships)
VPF_NPF = 1, ///< New PathFinder
VPF_YAPF = 2, ///< Yet Another PathFinder
};