equal
deleted
inserted
replaced
815 const Station* st = GetStation(GetInt32(&argv)); |
815 const Station* st = GetStation(GetInt32(&argv)); |
816 |
816 |
817 if (!st->IsValid()) { // station doesn't exist anymore |
817 if (!st->IsValid()) { // station doesn't exist anymore |
818 buff = GetStringWithArgs(buff, STR_UNKNOWN_DESTINATION, NULL, last); |
818 buff = GetStringWithArgs(buff, STR_UNKNOWN_DESTINATION, NULL, last); |
819 } else { |
819 } else { |
820 int64 temp[2]; |
820 int64 temp[3]; |
821 temp[0] = STR_TOWN; |
821 temp[0] = STR_TOWN; |
822 temp[1] = st->town->index; |
822 temp[1] = st->town->index; |
|
823 temp[2] = st->index; |
823 buff = GetStringWithArgs(buff, st->string_id, temp, last); |
824 buff = GetStringWithArgs(buff, st->string_id, temp, last); |
824 } |
825 } |
825 break; |
826 break; |
826 } |
827 } |
827 |
828 |