diff --git a/src/components/AfterServerView.tsx b/src/components/AfterServerView.tsx
index f45cfdc..e05185e 100644
--- a/src/components/AfterServerView.tsx
+++ b/src/components/AfterServerView.tsx
@@ -37,7 +37,7 @@ import {
getIndexFromRarity,
getMinehutIcons,
} from "@/lib/types/server-icon";
-import { Copy, Info, QrCode, Share2 } from "lucide-react";
+import { Banknote, Copy, Info, QrCode, Share2 } from "lucide-react";
import { useTheme } from "next-themes";
import { useEffect, useState } from "react";
import FadeIn from "react-fade-in/lib/FadeIn";
@@ -287,8 +287,9 @@ export default function AfterServerView({ server }: { server: string }) {
- | Credits per day |
-
+ | Credits p/ day |
+
+
{serverObject?.credits_per_day == undefined
? "? (unknown)"
: Math.floor(serverObject?.credits_per_day)}
@@ -475,7 +476,7 @@ export default function AfterServerView({ server }: { server: string }) {
{serverObject?.purchased_icons.map((icon) => (
c._id === icon)?.rank.toLowerCase()
@@ -489,6 +490,37 @@ export default function AfterServerView({ server }: { server: string }) {
className="mr-2"
/>
{icons?.find((c) => c._id === icon)?.display_name}
+
+
+
+
+
+ Just because an item is available, it doesn't directly{" "}
+
+ mean that it can be bought immediately, it just means
+ its in the
+ pool of icons that are in the weekly rotation.
+
+
+
+ Available currently:
+ {toJSX(
+ icons?.find((c) => c._id === icon)?.available
+ )}
+
+
+ Disabled currently:
+ {toJSX(
+ icons?.find((c) => c._id === icon)?.disabled
+ )}
+
+
+ Price:
+
+ {icons?.find((c) => c._id === icon)?.price} credits
+
+
+
True;
}
+ if (boolean == undefined) {
+ return N/A ;
+ }
+
return False ;
}
|