Skip to content

Commit

Permalink
Merge pull request Hotride#82 from rockytriton/master
Browse files Browse the repository at this point in the history
fix client crash at login
  • Loading branch information
fungos authored Jun 23, 2018
2 parents 8fbd553 + d38afdf commit d2efbaf
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions OrionUO/Managers/PacketManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2681,6 +2681,9 @@ PACKET_HANDLER(ExtendedCommand)
}
case 5:
{
if (g_World == NULL)
return;

CGameCharacter *character = g_World->FindWorldCharacter(serial);
if (character == NULL)
break;
Expand Down

0 comments on commit d2efbaf

Please sign in to comment.