From 4ac2d82e14837a068f55d60a95a9f69806dea160 Mon Sep 17 00:00:00 2001 From: nickofolas Date: Sat, 23 Apr 2022 18:50:39 -0500 Subject: [PATCH] Fix BN level on flume --- src/BitNode/ui/BitverseRoot.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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) {