Remove legacy .aud sound defaults from Common traits

While C&C-specific sound defaults might be acceptable for C&C-specific traits like MadTank and Chronoshiftable, for common, generic traits like Building they no longer are.
This commit is contained in:
reaperrr
2017-09-10 12:45:49 +02:00
committed by abcdefg30
parent 58b5e7b243
commit d643d2ebda
5 changed files with 40 additions and 5 deletions

View File

@@ -55,9 +55,9 @@ namespace OpenRA.Mods.Common.Traits
[Desc("Clear smudges from underneath the building footprint on transform.")]
public readonly bool RemoveSmudgesOnTransform = true;
public readonly string[] BuildSounds = { "placbldg.aud", "build5.aud" };
public readonly string[] BuildSounds = { };
public readonly string[] UndeploySounds = { "cashturn.aud" };
public readonly string[] UndeploySounds = { };
public virtual object Create(ActorInitializer init) { return new Building(init, this); }