1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-15 11:47:24 +08:00

Fix hitobjects without custom sample banks parsing as not auto sample bank

This commit is contained in:
OliBomby 2024-10-01 12:11:44 +02:00
parent 6be94a3a96
commit 2381c2c72c

View File

@ -543,7 +543,7 @@ namespace osu.Game.Rulesets.Objects.Legacy
/// <summary>
/// Whether the bank for additions should be inherited from the normal sample in edit.
/// </summary>
public bool EditorAutoBank;
public bool EditorAutoBank = true;
public SampleBankInfo Clone() => (SampleBankInfo)MemberwiseClone();
}