Commits
Phoenix616 authored and md_5 committed e86f4dc4bb8
626 626 | * <b>Note: </b> the {@link SpawnCategory#MISC} are not consider. |
627 627 | * |
628 628 | * @param spawnCategory the category of spawn |
629 629 | * @return the default ticks per {@link SpawnCategory} mobs spawn value |
630 630 | */ |
631 631 | public static int getTicksPerSpawns( SpawnCategory spawnCategory) { |
632 632 | return server.getTicksPerSpawns(spawnCategory); |
633 633 | } |
634 634 | |
635 635 | /** |
636 - | * Gets a player object by the given username. |
636 + | * Gets a player whose name matches the given name closest. |
637 + | * <p> |
638 + | * Use {@link #getPlayerExact(String)} to get the player matching the input exactly |
639 + | * and {@link #matchPlayer(String)} if you want a list of all players matching the input. |
637 640 | * <p> |
638 641 | * This method may not return objects for offline players. |
639 642 | * |
640 643 | * @param name the name to look up |
641 644 | * @return a player if one was found, null otherwise |
642 645 | */ |
643 646 | |
644 647 | public static Player getPlayer( String name) { |
645 648 | return server.getPlayer(name); |
646 649 | } |