diff --git a/src/showplanner/Player.tsx b/src/showplanner/Player.tsx index b480ca7..c5f1122 100644 --- a/src/showplanner/Player.tsx +++ b/src/showplanner/Player.tsx @@ -383,11 +383,6 @@ export function Player({ id }: { id: number }) { if (id < PLAYER_COUNT) { return ("player-" + id) as LevelsSource; } - // We don't want the Preview channel doing anything silly, overwrite default player settings. - if (isPreviewChannel) { - dispatch(MixerState.setAutoAdvance({ player: id, enabled: false })); - } - throw new Error("Unknown Player VUMeter source: " + id); };