From 45d9053aea356b8dcbc62d83ab727fd687408e08 Mon Sep 17 00:00:00 2001
From: creations <creations@creations.works>
Date: Tue, 22 Apr 2025 20:19:22 -0400
Subject: [PATCH] add stupid env var

---
 src/index.ts | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/index.ts b/src/index.ts
index c4148b4..73eaed7 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -10,3 +10,7 @@ main().catch((error: Error) => {
 	logger.error(["Error initializing the server:", error]);
 	process.exit(1);
 });
+
+if (process.env.Inpterodactyl === "true") {
+	console.log("Server Started");
+}