Merge pull request #32 from DarkSeraphim/patch-1
Fix NPE when writing PlayerInfoData to packet
Dieser Commit ist enthalten in:
Commit
5e5eff5e5f
@ -80,7 +80,7 @@ public class PlayerInfoData {
|
|||||||
specific.profile.handle,
|
specific.profile.handle,
|
||||||
specific.ping,
|
specific.ping,
|
||||||
EnumWrappers.getGameModeConverter().getGeneric(EnumWrappers.getGameModeClass(), specific.gameMode),
|
EnumWrappers.getGameModeConverter().getGeneric(EnumWrappers.getGameModeClass(), specific.gameMode),
|
||||||
specific.displayName.handle
|
specific.displayName != null ? specific.displayName.handle : null
|
||||||
);
|
);
|
||||||
return result;
|
return result;
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
@ -149,4 +149,4 @@ public class PlayerInfoData {
|
|||||||
return String.format("PlayerInfoData { profile=%s, ping=%s, gameMode=%s, displayName=%s }",
|
return String.format("PlayerInfoData { profile=%s, ping=%s, gameMode=%s, displayName=%s }",
|
||||||
profile, ping, gameMode, displayName);
|
profile, ping, gameMode, displayName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren