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

Removed redundant variable

This commit is contained in:
MrTheMake 2017-06-19 18:34:56 +02:00
parent b9cf0e47ee
commit b4437329cc

View File

@ -53,17 +53,14 @@ namespace osu.Game.Overlays
private Container dragContainer;
private Container playerContainer;
private bool allowBeatmapChange = true;
public bool AllowBeatmapChange
{
get
{
return allowBeatmapChange;
return playlist.AllowBeatmapChange;
}
set
{
allowBeatmapChange = value;
playlist.AllowBeatmapChange = value;
}
}