Merge pull request #45 from Johni0702/master
Fix NPE in WrappedGameProfile.getId()
Dieser Commit ist enthalten in:
Commit
0a4b1b3201
@ -87,7 +87,7 @@ public class WrappedGameProfile extends AbstractWrapper {
|
||||
* @return The UUID of the player, or NULL if not computed.
|
||||
*/
|
||||
public String getId() {
|
||||
if (GET_UUID_STRING == null)
|
||||
if (GET_UUID_STRING != null)
|
||||
return (String) GET_UUID_STRING.get(handle);
|
||||
return getProfile().getId() != null ? getProfile().getId().toString() : null;
|
||||
}
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren