From 419bde899773c2bb17dd7eefcad8e728efe1c450 Mon Sep 17 00:00:00 2001 From: Vadim Markovtsev Date: Thu, 21 Jan 2016 09:57:52 +0300 Subject: [PATCH] Fix 2358 swapped garrison <-> visiting status text --- client/widgets/CGarrisonInt.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/widgets/CGarrisonInt.cpp b/client/widgets/CGarrisonInt.cpp index f3efd8559..7d582042c 100644 --- a/client/widgets/CGarrisonInt.cpp +++ b/client/widgets/CGarrisonInt.cpp @@ -73,11 +73,11 @@ void CGarrisonSlot::hover (bool on) { if(upg == EGarrisonType::UP) { - temp = CGI->generaltexth->tcommands[32]; //Select %s (visiting) + temp = CGI->generaltexth->tcommands[12]; //Select %s (in garrison) } else if(owner->armedObjs[0] && (owner->armedObjs[0]->ID == Obj::TOWN || owner->armedObjs[0]->ID == Obj::HERO)) { - temp = CGI->generaltexth->tcommands[12]; //Select %s (in garrison) + temp = CGI->generaltexth->tcommands[32]; //Select %s (visiting) } else {