Fix Umlauts destroyed in undocumented changes in 469df5603842

Günther Brammer 2010-02-16 03:23:25 +01:00
parent e665a75693
commit 0edc000184
1 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
* Copyright (c) 2001-2008 Sven Eberhardt
* Copyright (c) 2002-2008 Peter Wortmann
* Copyright (c) 2004 Armin Burgmeier
* Copyright (c) 2005-2009 Gºnther Brammer
* Copyright (c) 2005-2009 Günther Brammer
* Copyright (c) 2009 Nicolas Hake
* Copyright (c) 2001-2009, RedWolf Design GmbH, http://www.clonk.de
*
@ -963,7 +963,7 @@ void C4Player::CheckCrewExPromotion()
C4Object *hirank;
if ((hirank=GetHiRankActiveCrew(false)))
if (hirank->Info)
if (hirank->Info->Rank<1) // No Fhnrich -> except. promo.
if (hirank->Info->Rank<1) // No Fähnrich -> except. promo.
if ((hirank=GetHiExpActiveCrew(false)))
hirank->Promote(1,true,false);
}