From 297771540278864f464e43f78d7586c429b97486 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Mon, 7 Nov 2016 20:40:23 +0100 Subject: Stations: Fix get_station_by_location num_matches parameter --- scripts/acronyms.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/acronyms.pl') diff --git a/scripts/acronyms.pl b/scripts/acronyms.pl index 82e8b3f..6067c44 100755 --- a/scripts/acronyms.pl +++ b/scripts/acronyms.pl @@ -1891,7 +1891,7 @@ sub get_station_by_location { my @station_map = pairwise { [ $a, $b ] } @candidates, @distances; @station_map = sort { $a->[1] <=> $b->[1] } @station_map; - splice( @station_map, 10 ); + splice( @station_map, $num_matches ); return @station_map; } -- cgit v1.2.3