Commits

Phoenix616 authored and md_5 committed e86f4dc4bb8
#1041: Improve getPlayer(String) docs to clarify it matches the name
No tags

src/main/java/org/bukkit/Bukkit.java

Modified
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(@NotNull 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 @Nullable
644 647 public static Player getPlayer(@NotNull String name) {
645 648 return server.getPlayer(name);
646 649 }

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut