Skip to content

Commit

Permalink
Updating to new SSG_MEMBER types
Browse files Browse the repository at this point in the history
  • Loading branch information
brobey committed Dec 11, 2019
1 parent 756246d commit 88e09de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sdsdkv-server.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ group_update_cb(
int world_id = *(int *)cb_dat;

switch (update.type) {
case SSG_MEMBER_ADD:
printf("%d SSG update: ADD member %lu\n", world_id, update.member);
case SSG_MEMBER_JOINED:
printf("%d SSG update: JOINED member %lu\n", world_id, update.member);
break;
case SSG_MEMBER_REMOVE:
case SSG_MEMBER_LEFT:
printf("%d SSG update: RM member %lu\n", world_id, update.member);
break;
}
Expand Down

0 comments on commit 88e09de

Please sign in to comment.