Mercurial > hg > openttd
diff src/command.cpp @ 6980:cb6b3e277df0 draft
(svn r10236) -Feature: Introduce a form of timetabling for vehicles.
author | maedhros <maedhros@openttd.org> |
---|---|
date | Wed, 20 Jun 2007 19:17:22 +0000 (2007-06-20) |
parents | d2ef90986630 |
children | a19700261804 |
line wrap: on
line diff
--- a/src/command.cpp +++ b/src/command.cpp @@ -177,6 +177,8 @@ DEF_COMMAND(CmdSetGroupReplaceProtection); DEF_COMMAND(CmdMoveOrder); +DEF_COMMAND(CmdChangeTimetable); +DEF_COMMAND(CmdSetVehicleOnTime); /* The master command table */ static const Command _command_proc_table[] = { @@ -331,6 +333,8 @@ {CmdRemoveAllVehiclesGroup, 0}, /* 125 */ {CmdSetGroupReplaceProtection, 0}, /* 126 */ {CmdMoveOrder, 0}, /* 127 */ + {CmdChangeTimetable, 0}, /* 128 */ + {CmdSetVehicleOnTime, 0}, /* 129 */ }; /* This function range-checks a cmd, and checks if the cmd is not NULL */