]> git.lizzy.rs Git - dragonblocks.git/blob - login-config.php
Implement per-map sky
[dragonblocks.git] / login-config.php
1 <?php
2         /*
3          * FAKE LOGIN API
4          * Only use this for local testing! Any user has access to all worlds!
5          * Replace by the functions of your account system or implement is_loggedin as return false
6         */
7         function get_username(){
8                 return "user";
9         }
10         function is_loggedin(){
11                 return true;
12         } 
13 ?>