Merge branch 'master' into 'master'

Various Improvement (Android)

See merge request core-developers/forge!2110
This commit is contained in:
swordshine
2019-09-15 02:24:26 +00:00
10 changed files with 106 additions and 35 deletions

View File

@@ -38,6 +38,13 @@ public final class UpdateLobbyPlayerEvent implements NetEvent {
public static UpdateLobbyPlayerEvent deckUpdate(final DeckSection section, final CardPool cards) {
return new UpdateLobbyPlayerEvent(section, cards);
}
public static UpdateLobbyPlayerEvent nameUpdate(final String name) {
return new UpdateLobbyPlayerEvent(name);
}
private UpdateLobbyPlayerEvent(String name) {
this.name = name;
}
private UpdateLobbyPlayerEvent(final Deck deck) {
this.deck = deck;