I need to be able to check whether an object is inside a player's hand zone or not. This would make my task a lot easier as currently I have to loop through every player's hand to search for this object.
in_hand_zone could return a table with both the colour of the hand and the hand index the object resides in.
The value should return nil if the object does not reside in any hand zone.
{string hand_colour, int hand_index}
Thanks.