From ae1c4a3fdf17f10b6030b64dd5a9cf16b4acba41 Mon Sep 17 00:00:00 2001 From: 1092384 <66282302+1092384@users.noreply.github.com> Date: Thu, 31 Oct 2024 20:47:22 +0800 Subject: [PATCH] feat: move loot calculator to top of page it doesn't work because loot tables are still broken --- app/(wiki)/loot/page.tsx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/app/(wiki)/loot/page.tsx b/app/(wiki)/loot/page.tsx index 36f8942a..1014b28e 100644 --- a/app/(wiki)/loot/page.tsx +++ b/app/(wiki)/loot/page.tsx @@ -19,6 +19,16 @@ export default function LootPage() { various items to drop.

+
+
+

Calculator

+

+ Use this interactive calculator to determine the chance of an item + dropping from an obstacle. +

+
+ +
{Object.entries(LootTables.normal).map(([name, tables]) => (
@@ -54,16 +64,6 @@ export default function LootPage() {

-
-
-

Calculator

-

- Use this interactive calculator to determine the chance of an item - dropping from an obstacle. -

-
- -
); }