Create Convenience Method in org.bukkit.Server to get OfflinePlayer from a String UUID

    • Type: New Feature
    • Resolution: Won't Fix
    • Priority: Minor
    • None
    • Affects Version/s: None

      Just a quick suggestion: Add a convenience method in org.bukkit.Server to get an OfflinePlayer object with a UUID string. Currently anyone who wishes to get an offline player if they have the UUID in string form, they have to use this:

      Bukkit.getOfflinePlayer(UUID.fromString("<uuid of player>"));
      

      This can be done simply by putting the line above in a method in org.bukkit.Server:

      public OfflinePlayer getOfflinePlayerWithUUID(String uuid){
          return this.getOfflinePlayer(UUID.fromString(uuid));
      }
      

            Assignee:
            Unassigned
            Reporter:
            Jasper Reddin
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: