feat(PlayerWindow): Removed nullptr check on net_player

This commit is contained in:
Yimura 2021-08-05 01:25:43 +02:00
parent 011f40e839
commit aef5cd15b4
No known key found for this signature in database
GPG Key ID: 3D8FF4397E768682

View File

@ -6,7 +6,7 @@ namespace big
{
void window::player()
{
if (!g.selected_player.is_online || g.selected_player.net_player == nullptr)
if (!g.selected_player.is_online)
{
g.window.player = false;