diff options
Diffstat (limited to 'Game/Code/Screens')
-rw-r--r-- | Game/Code/Screens/UScreenSong.pas | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Game/Code/Screens/UScreenSong.pas b/Game/Code/Screens/UScreenSong.pas index 0483284e..653b37c1 100644 --- a/Game/Code/Screens/UScreenSong.pas +++ b/Game/Code/Screens/UScreenSong.pas @@ -756,8 +756,7 @@ begin end else
begin // clicked on song
- if (CatSongs.Song[Interaction].isDuet and ((PlayersPlay=1) or
- (PlayersPlay=3) or (PlayersPlay=6))) then
+ if (CatSongs.Song[Interaction].isDuet and (PlayersPlay=1)) then
begin
ScreenPopupError.ShowPopup(Language.Translate('SING_ERROR_DUET_NUM_PLAYERS'));
Exit;
|