From 69201ba42d1cf1ddfd78ba6f059ce2ac3c1b97c3 Mon Sep 17 00:00:00 2001 From: Eugen Jiresch Date: Mon, 7 Sep 2009 07:54:45 +0000 Subject: [PATCH] small change/typo fix to error messages on unstore_unit --- src/game_events.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game_events.cpp b/src/game_events.cpp index 2b852a34881..d78ba649f0d 100644 --- a/src/game_events.cpp +++ b/src/game_events.cpp @@ -2576,7 +2576,7 @@ WML_HANDLER_FUNCTION(unstore_unit, /*event_info*/, cfg) desciption) != desciptions.end()) { lg::wml_error << "Recall list has duplicate unit " - "uderlying_ids '" << desciption + "underlying_ids '" << desciption << "' unstore_unit may not work as expected.\n"; } else { desciptions.push_back(desciption); @@ -2603,7 +2603,7 @@ WML_HANDLER_FUNCTION(unstore_unit, /*event_info*/, cfg) } t.recall_list().push_back(u); } else { - ERR_NG << "Cannot unstore unit: no recall list for player " << u.side() + ERR_NG << "Cannot unstore unit: recall list is empty for player " << u.side() << " and the map location is invalid.\n"; } }