Commits
md_5 authored 958a8d04a6d
696 696 | * Gets whether to use vanilla (false) or exact behaviour (true). |
697 697 | * |
698 698 | * <ul> |
699 699 | * <li>Vanilla behaviour: check for collisions and move the player if |
700 700 | * needed. |
701 701 | * <li>Exact behaviour: spawn players exactly where they should be. |
702 702 | * </ul> |
703 703 | * |
704 704 | * @return true if exact location locations are used for spawning, false |
705 705 | * for vanilla collision detection or otherwise |
706 + | * |
707 + | * @deprecated non standard and unused feature. |
706 708 | */ |
709 + | |
707 710 | public static boolean useExactLoginLocation() { |
708 711 | return server.useExactLoginLocation(); |
709 712 | } |
710 713 | |
711 714 | /** |
712 715 | * Shutdowns the server, stopping everything. |
713 716 | */ |
714 717 | public static void shutdown() { |
715 718 | server.shutdown(); |
716 719 | } |