Hi,
what is the purpose of the invitationReceived event type? It never receives any data. If someone sends me a direct invitation I’d expect the invitationReceived event type to get a notification. But nothing happens. If I tap the Game Center banner that slides down, “playerTurn” is called. So there’s a missing link here since there’s no way to know in the app if an invitation to play is received.
When someone invites me directly I’d expect the invitationReceived event type in the gameNetwork SetEventListener to be notified.
gameNetwork.request( “setEventListener”,
{
listener = function(event)
if event.type == “invitationReceived” then
print(“I’m totally not needed, never gets called anyway…”)
end
end
})