Merge pull request #11288 from reaperrr/fix-reloading-sound

Play reload sounds only to owner
This commit is contained in:
Matthias Mailänder
2016-05-15 14:20:41 +02:00

View File

@@ -65,7 +65,7 @@ namespace OpenRA.Mods.Common.Activities
var sound = pool.Info.RearmSound;
if (sound != null)
Game.Sound.Play(sound, self.CenterPosition);
Game.Sound.PlayToPlayer(self.Owner, sound, self.CenterPosition);
ammoPoolsReloadTimes[pool] = pool.Info.ReloadDelay;
}