It shouldn't care who the leader of the group is, or even if one of the two people is the
leader.
It doesn't seem to be working correctly though. Can someone see an error of mine?
#define GROUPED(x, y) ((x)->master == (y) || (y)->master == (x) || (x)->master == (y)->master) \
&& (AFF_FLAGGED((x), AFF_GROUP) && AFF_FLAGGED((y), AFF_GROUP))
The following situation is where it doesn't work:
I am player A.
I am the leader of the group.
Player B is following me; we are both grouped.
But GROUPED(B, A) is evaluating to false apparently.
Thanks!


