Skip to content

Commit 32055d8

Browse files
committed
Remove temporary test code for Dungeon Mayhem (I knew this would happen)
1 parent 8a23b3a commit 32055d8

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

games-core/src/main/kotlin/net/zomis/games/impl/DungeonMayhem.kt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff 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 {

0 commit comments

Comments
 (0)