diff --git a/osu.Game.Rulesets.Taiko/UI/TaikoPlayfield.cs b/osu.Game.Rulesets.Taiko/UI/TaikoPlayfield.cs index 2112110be9..2cc95fc981 100644 --- a/osu.Game.Rulesets.Taiko/UI/TaikoPlayfield.cs +++ b/osu.Game.Rulesets.Taiko/UI/TaikoPlayfield.cs @@ -291,9 +291,9 @@ namespace osu.Game.Rulesets.Taiko.UI throw new InvalidOperationException("Current sample set not found."); if (action == TaikoAction.LeftCentre || action == TaikoAction.RightCentre) - samples.Item1.Play(); + samples.Centre.Play(); else - samples.Item2.Play(); + samples.Rim.Play(); return true; }