(svn r4871) - Fixed off-by-one and added company color displaying in 'players' console command.
authorglx
Sun, 14 May 2006 23:01:11 +0000
changeset 3847 97c242d81edb
parent 3846 49b54caf1c65
child 3848 8cc088ddcfce
(svn r4871) - Fixed off-by-one and added company color displaying in 'players' console command.
console_cmds.c
--- a/console_cmds.c	Sun May 14 21:10:15 2006 +0000
+++ b/console_cmds.c	Sun May 14 23:01:11 2006 +0000
@@ -1143,9 +1143,12 @@
 	NetworkPopulateCompanyInfo();
 
 	FOR_ALL_PLAYERS(p) {
-		if (!p->is_active)
- 			continue;
-		IConsolePrintF(8, "#:%d Company Name: '%s'  Year Founded: '%d'  Money: '%d'  Loan: '%d' Value: '%d'", p->index, _network_player_info[p->index].company_name,  p->inaugurated_year + MAX_YEAR_BEGIN_REAL, p->player_money, p->current_loan, CalculateCompanyValue(p));
+		char buffer[512];
+
+		if (!p->is_active) continue;
+
+		GetString(buffer, STR_00D1_DARK_BLUE + _player_colors[p->index]);
+		IConsolePrintF(8, "#:%d(%s) Company Name: '%s'  Year Founded: %d  Money: %d  Loan: %d  Value: %d", p->index + 1, buffer, _network_player_info[p->index].company_name, p->inaugurated_year + MAX_YEAR_BEGIN_REAL, p->player_money, p->current_loan, CalculateCompanyValue(p));
 	}
 
 	return true;