Feature Request - Check if player is alive before giving kitSuggestion

Good Evening

There are a few plugins around that allow kits to be issued via a GUI on entry to the server, unfortunately if a player was killed prior to joining they enter on the respawn screen but don't see this as its behind the GUI. They can still claim a kit but have no inventory for the items to go into.

Is it possible to add a check that the player is alive and well prior to issuing a kit?

Regards Jacko

Would adding the following in CanClaimKit be a simple solution, with a message for this case added also of course?

if (!player.IsAlive()) { return Message("Error.CanClaim.Dead", player.userID); return null; }