Skip to content

Commit

Permalink
Allows removal of difficult terrain
Browse files Browse the repository at this point in the history
Fixes #65
  • Loading branch information
hobnob committed Apr 26, 2021
1 parent b281742 commit b737d0f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions VirtualGloomhavenBoard/Elm/src/Main.elm
Original file line number Diff line number Diff line change
Expand Up @@ -2859,6 +2859,9 @@ addActionsForCell currentMode coords overlays element =
( DestroyOverlay, Trap _ ) ->
Dom.addAction ( "click", RemoveOverlay overlay )

( DestroyOverlay, DifficultTerrain _ ) ->
Dom.addAction ( "click", RemoveOverlay overlay )

( LootCell, Treasure _ ) ->
Dom.addAction ( "click", RemoveOverlay overlay )

Expand Down

0 comments on commit b737d0f

Please sign in to comment.