diff --git a/command.c b/command.c --- a/command.c +++ b/command.c @@ -159,6 +159,9 @@ DEF_COMMAND(CmdRemoveSignalTrack); DEF_COMMAND(CmdReplaceVehicle); +DEF_COMMAND(CmdCloneVehicle); + + /* The master command table */ static const Command _command_proc_table[] = { {CmdBuildRailroadTrack, 0}, /* 0 */ @@ -300,6 +303,7 @@ static const Command _command_proc_table {CmdGiveMoney, 0}, /* 113 */ {CmdChangePatchSetting, CMD_SERVER}, /* 114 */ {CmdReplaceVehicle, 0}, /* 115 */ + {CmdCloneVehicle, 0}, /* 116 */ }; /* This function range-checks a cmd, and checks if the cmd is not NULL */