(final PlayerView pv)
| 253 | } |
| 254 | |
| 255 | public Deck getDeck(final PlayerView pv) { |
| 256 | for (final RegisteredPlayer rp : getMatch().getPlayers()) { |
| 257 | if (pv.isLobbyPlayer(rp.getPlayer())) { |
| 258 | return rp.getDeck(); |
| 259 | } |
| 260 | } |
| 261 | return null; |
| 262 | } |
| 263 | |
| 264 | public GameOutcome getOutcome() { |
| 265 | return getMatch().getOutcomeById(getId()); |
nothing calls this directly
no test coverage detected