From 8c86a18806d4afc5a28cbfa1eb9b499a5a9d0ff1 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Tue, 27 Mar 2018 23:13:18 -0400 Subject: XEEN: Fix missing message for when all Guild spells bought --- engines/xeen/locations.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/xeen/locations.cpp') diff --git a/engines/xeen/locations.cpp b/engines/xeen/locations.cpp index f1d5348f33..72362171be 100644 --- a/engines/xeen/locations.cpp +++ b/engines/xeen/locations.cpp @@ -1042,7 +1042,7 @@ Common::String TrainingLocation::createLocationText(Character &ch) { } else if (ch._level._permanent >= _maxLevel) { // At maximum level _experienceToNextLevel = 1; - msg = Common::String::format(Res.LEARNED_ALL, ch._name.c_str()); + msg = Common::String::format(Res.TRAINING_LEARNED_ALL, ch._name.c_str()); } else { // Eligble for level increase uint cost = ch._level._permanent * ch._level._permanent * 10; -- cgit v1.2.3