File diff r23482:de566f8c088d → r23483:3733e6b8ff17
src/script/api/script_clientlist.cpp
Show inline comments
 
@@ -16,24 +16,21 @@
 
#include "../../network/network_base.h"
 

	
 
#include "../../safeguards.h"
 

	
 
ScriptClientList::ScriptClientList()
 
{
 
#ifdef ENABLE_NETWORK
 
	if (!_networking) return;
 
	NetworkClientInfo *ci;
 
	FOR_ALL_CLIENT_INFOS(ci) {
 
		this->AddItem(ci->client_id);
 
	}
 
#endif
 
}
 

	
 
ScriptClientList_Company::ScriptClientList_Company(ScriptCompany::CompanyID company)
 
{
 
#ifdef ENABLE_NETWORK
 
	if (!_networking) return;
 
	CompanyID c;
 
	if (company == ScriptCompany::COMPANY_SPECTATOR) {
 
		c = ::COMPANY_SPECTATOR;
 
	} else {
 
		company = ScriptCompany::ResolveCompanyID(company);
 
@@ -42,8 +39,7 @@ ScriptClientList_Company::ScriptClientLi
 
	}
 

	
 
	NetworkClientInfo *ci;
 
	FOR_ALL_CLIENT_INFOS(ci) {
 
		if (ci->client_playas == c) this->AddItem(ci->client_id);
 
	}
 
#endif
 
}