File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
games-core/src/main/kotlin/net/zomis/games/impl Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -273,17 +273,13 @@ object DungeonMayhemDsl {
273273 val decks = listOf (DungeonMayhemDecks .blue(), DungeonMayhemDecks .purple(),
274274 DungeonMayhemDecks .red(), DungeonMayhemDecks .yellow()).shuffled()
275275 val deckStrings = replayable.strings(" characters" ) { decks.map { it.first } }
276- .let { listOf (" purple" , " yellow" , " red" , " blue" ) }
277276
278277 game.players.forEachIndexed { index, player ->
279278 player.color = deckStrings[index]
280279 player.deck.cards.addAll(decks.first { it.first == deckStrings[index] }.second)
281280 player.drawCard(replayable, " gameStart" , 3 )
282281 }
283282 newTurnDrawCard(Unit )
284-
285- val pl = game.players.find { it.color == " purple" }!!
286- pl.deck.let { it.card(it.cards.find { it.name == " Clever Disguise" }!! ).moveTo(pl.hand) }
287283 }
288284 fun CardZone<DungeonMayhemCard>.view (): List <Map <String , Any >> {
289285 return this .cards.map {
You can’t perform that action at this time.
0 commit comments