diff --git a/src/BitNode/ui/BitverseRoot.tsx b/src/BitNode/ui/BitverseRoot.tsx index d75b97652..280e72bb0 100644 --- a/src/BitNode/ui/BitverseRoot.tsx +++ b/src/BitNode/ui/BitverseRoot.tsx @@ -163,7 +163,9 @@ export function BitverseRoot(props: IProps): React.ReactElement { return lvl; } const max = n === 12 ? Infinity : 3; - return Math.min(max, lvl + 1); + + // If accessed via flume, display the current BN level, else the next + return Math.min(max, lvl + Number(!props.flume)); }; if (Settings.DisableASCIIArt) {