diff --git a/OpenRa.Game/MainWindow.cs b/OpenRa.Game/MainWindow.cs index ade6d7b94d..883bd8b541 100644 --- a/OpenRa.Game/MainWindow.cs +++ b/OpenRa.Game/MainWindow.cs @@ -32,7 +32,9 @@ namespace OpenRa.Game FileSystem.Mount(new Package("general.mix")); FileSystem.Mount(new Package("local.mix")); FileSystem.Mount(new Package("sounds.mix")); - FileSystem.Mount(new Package("speech.mix")); + FileSystem.Mount(new Package("speech.mix")); + FileSystem.Mount(new Package("allies.mix")); + FileSystem.Mount(new Package("russian.mix")); FormBorderStyle = FormBorderStyle.None; BackColor = Color.Black; diff --git a/OpenRa.Game/Traits/Mobile.cs b/OpenRa.Game/Traits/Mobile.cs index 0eb62d2d3b..5a3c7a35b0 100644 --- a/OpenRa.Game/Traits/Mobile.cs +++ b/OpenRa.Game/Traits/Mobile.cs @@ -102,7 +102,11 @@ namespace OpenRa.Game.Traits public Order Order(Actor self, Game game, int2 xy) { if (xy != toCell) + { + if (game.LocalPlayer == self.Owner) + game.PlaySound("ackno.r00", false); return new MoveOrder(self, xy); + } return null; } }