fixed #2167 -- silly inconsistency between InfDeath and dieN sequence numbering

This commit is contained in:
Chris Forbes
2012-07-02 09:42:20 +12:00
parent e89ee2c131
commit 3dc39b2c9d
7 changed files with 124 additions and 124 deletions

View File

@@ -127,7 +127,7 @@ namespace OpenRA.Mods.RA.Render
self.World.AddFrameEndTask(w =>
{
if (!self.Destroyed)
w.Add(new Corpse(self, "die{0}".F(e.Warhead.InfDeath + 1)));
w.Add(new Corpse(self, "die{0}".F(e.Warhead.InfDeath)));
});
}
}