Obsolete RequestRecordInfo adjustments for C4 branch.

This commit is contained in:
MobiusDevelopment
2020-06-15 00:36:26 +00:00
parent cbd3a09ff4
commit e56fd7b401

View File

@@ -154,7 +154,10 @@ public class RequestRecordInfo extends GameClientPacket
{
// Update the state of the Creature object client side by sending Server->Client packet MoveToPawn/CharMoveToLocation and AutoAttackStart to the PlayerInstance
final Creature obj = (Creature) object;
obj.getAI().describeStateToPlayer(player);
if (obj.hasAI())
{
obj.getAI().describeStateToPlayer(player);
}
}
}
}