diff --git a/web/index.html b/web/index.html
index 73d4798..b880780 100644
--- a/web/index.html
+++ b/web/index.html
@@ -33,9 +33,9 @@
 			In the former case: Yay it works! In the latter you should
 			probably contact an admin or a dev nearby :(
 			Here are a few links for testing:
-			View Data,
-			Door Sign Generator,
-			Test Checkpoint,
+			View Data,
+			Door Sign Generator,
+			Test Checkpoint,
 			
 			© 2025 made by Oskar
 			for FaSTTUBe.
diff --git a/web/main.js b/web/main.js
index ce1b6dc..57dd22d 100644
--- a/web/main.js
+++ b/web/main.js
@@ -51,7 +51,7 @@ function sendMainData() {
 		'name': name
 	}
 
-	post("/checkin", payload)
+	post("/game/checkin", payload)
 
 }
 
diff --git a/web/view.js b/web/view.js
index 63ed4a2..dcb2796 100644
--- a/web/view.js
+++ b/web/view.js
@@ -236,7 +236,7 @@ function loadData() {
 		headers: headers
 	}
 
-	fetch('/data', fetchopts)
+	fetch('/game/data', fetchopts)
 		.then(res => {
 			if (Math.floor(res.status / 100) == 2)
 				return res.json()