Created
April 25, 2015 20:04
-
-
Save volgar1x/7fb1125953c04a38e82e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Listen | |
public Future<Unit> knownNotifications(ChoosePlayerEvent evt) { | |
return notifs.findAll(evt.getPlayer().getId()).map(array -> | |
client.write(new NotificationListMessage( | |
NotificationConverter.compressNotifications(array)) | |
) | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment