From 96f3a03e3ac6152715e162272e0d6fee8a5ebf8f Mon Sep 17 00:00:00 2001 From: ZhilkinSerg Date: Sat, 1 Aug 2020 00:25:58 +0300 Subject: [PATCH] Report failing starting location --- src/start_location.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/start_location.cpp b/src/start_location.cpp index 5e504c59d78ed..aa86d285945d1 100644 --- a/src/start_location.cpp +++ b/src/start_location.cpp @@ -208,7 +208,8 @@ tripoint_abs_omt start_location::find_player_initial_location() const } } // Should never happen, if it does we messed up. - popup( _( "Unable to generate a valid starting location, please report this failure." ) ); + popup( _( "Unable to generate a valid starting location %s [%s] in a radius of %d overmaps, please report this failure." ), + name(), id.str(), radius ); return overmap::invalid_tripoint; }