From 3c82a2b3c76da6933c8c0f75905f62795acb115a Mon Sep 17 00:00:00 2001 From: celestar Date: Sat, 29 Jan 2005 19:41:44 +0000 Subject: (svn r1721) -Feature: It is now possible to build multiple road stations (up to 8) on a single station. Thanks to: Truelight for the saveload code, Darkvater and Hackykid for network testing and Tron for proof-reading 1500 lines of diff. --- command.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'command.c') diff --git a/command.c b/command.c index 8e25cd79b..cb25ad574 100644 --- a/command.c +++ b/command.c @@ -37,9 +37,7 @@ DEF_COMMAND(CmdBuildTrainWaypoint); DEF_COMMAND(CmdRenameWaypoint); DEF_COMMAND(CmdRemoveTrainWaypoint); -DEF_COMMAND(CmdBuildTruckStation); - -DEF_COMMAND(CmdBuildBusStation); +DEF_COMMAND(CmdBuildRoadStop); DEF_COMMAND(CmdBuildLongRoad); DEF_COMMAND(CmdRemoveLongRoad); @@ -190,9 +188,9 @@ static CommandProc * const _command_proc_table[] = { CmdBuildTrainWaypoint, /* 16 */ CmdRenameWaypoint, /* 17 */ CmdRemoveTrainWaypoint, /* 18 */ - CmdBuildTruckStation, /* 19 */ + NULL, /* 19 */ NULL, /* 20 */ - CmdBuildBusStation, /* 21 */ + CmdBuildRoadStop, /* 21 */ NULL, /* 22 */ CmdBuildLongRoad, /* 23 */ CmdRemoveLongRoad, /* 24 */ -- cgit v1.2.3-54-g00ecf