Test lose actions

This commit is contained in:
Paul Chote
2010-05-01 01:12:04 +12:00
parent 9683ff64fb
commit 80621ca97a

View File

@@ -1,4 +1,4 @@
#region Copyright & License Information #region Copyright & License Information
/* /*
* Copyright 2007,2009,2010 Chris Forbes, Robert Pepperell, Matthew Bowra-Dean, Paul Chote, Alli Witheford. * Copyright 2007,2009,2010 Chris Forbes, Robert Pepperell, Matthew Bowra-Dean, Paul Chote, Alli Witheford.
* This file is part of OpenRA. * This file is part of OpenRA.
@@ -45,8 +45,14 @@ namespace OpenRA.Traits
var hasLost = !hasAnything && self.Owner != self.World.NeutralPlayer; var hasLost = !hasAnything && self.Owner != self.World.NeutralPlayer;
if (hasLost && !HasLost) if (hasLost && !HasLost)
{
Game.Debug("{0} is defeated.".F(self.Owner.PlayerName)); Game.Debug("{0} is defeated.".F(self.Owner.PlayerName));
foreach(var a in self.World.Queries.OwnedBy[self.Owner])
a.InflictDamage(a,a.Health,null);
// Hack
self.World.SetLocalPlayer(-1);
}
HasLost = hasLost; HasLost = hasLost;
} }
} }