diff --git a/not_approved.php b/not_approved.php
index 72858e8..5eab65f 100644
--- a/not_approved.php
+++ b/not_approved.php
@@ -25,7 +25,8 @@ $query->execute();
$ban = $query->fetch();
if(empty($ban)) {
-die("no bans");
+header('Location: /home');
+exit;
}
if($ban['type'] == 1) {
diff --git a/partners.php b/partners.php
new file mode 100644
index 0000000..e69de29
diff --git a/users.php b/users.php
new file mode 100644
index 0000000..6e0d77f
--- /dev/null
+++ b/users.php
@@ -0,0 +1,37 @@
+isLoggedIn()) {
+ header('location: /login');
+ exit;
+}
+?>
+
|
+
+
+header();
+$user = $con->prepare('SELECT * FROM users');
+$user->execute();
+$users = $user->fetchAll();
+foreach($users as $user) {
+?>
+
+
+
+
+ |
+ |
+ |
+ |
+
+
+
+
+
\ No newline at end of file
diff --git a/v1.1/avatar-fetch.php b/v1.1/avatar-fetch.php
index 6b25052..b4099d3 100644
--- a/v1.1/avatar-fetch.php
+++ b/v1.1/avatar-fetch.php
@@ -1,3 +1,9 @@
+if(isset($_GET['userId'])) {
+ $id = $_GET['userId'];
+ // we do not care about the placeid literally
+ if($id == '0') {
+ die('http://roblox.com/asset/?id=76157786;http://roblox.com/asset/?id=129459077'); // default guest avatar
+ }
+}
+?>
\ No newline at end of file