From a75faf333b28ef922f7208b4bae16fd76fcac962 Mon Sep 17 00:00:00 2001 From: Aaron Fischer Date: Thu, 25 Jan 2024 11:37:20 +0100 Subject: [PATCH] Adjust the location --- pkg/location/wheel_of_fortune.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/location/wheel_of_fortune.go b/pkg/location/wheel_of_fortune.go index 9fe4825..3259211 100644 --- a/pkg/location/wheel_of_fortune.go +++ b/pkg/location/wheel_of_fortune.go @@ -11,7 +11,7 @@ type Place struct { func SpinThatWheel() Place { // Cool places to be in Germany :) places := []Place{ - {Latitude: 48.119195, Longitude: 11.602183, Name: "ANX84, netcup Colocation im NorthC RZ, Nürnberg"}, + {Latitude: 49.3895261, Longitude: 11.1764104, Name: "ANX84, netcup colocation in the NorthC RZ, Nürnberg"}, } pick := rand.Int() % len(places)