Fix a possible crash in the lua Player.Team property
This commit is contained in:
@@ -54,7 +54,7 @@ namespace OpenRA.Mods.Common.Scripting
|
|||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
var c = Player.World.LobbyInfo.Clients[Player.ClientIndex];
|
var c = Player.World.LobbyInfo.Clients.FirstOrDefault(i => i.Index == Player.ClientIndex);
|
||||||
return c != null ? c.Team : 0;
|
return c != null ? c.Team : 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user