JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
remove redundant Array.clone()
[hexbog.git] / main.coffee
index 900295d..c0524a0 100644 (file)
@@ -225,7 +225,7 @@ init_board_layout = () ->
                                unless is_top_tile and fw_other is -1
                                        push i + columns[col_num].height + fw_other
                        # will be dereferenced later
-                       space.neighbors = neighbors.clone() # FIXME ?remove ``.clone()``
+                       space.neighbors = neighbors
                col_offset += column.height
        # convert all space.neighbors arrays from containing space ids to referencing the space
        for s in spaces
@@ -649,7 +649,7 @@ new_tile = (space, y) ->
        space.tile = tile
 
        html_tile.click ->
-               return if tile.hp < 1
+               return unselect_all() if tile.hp < 1
                word = selected_word()
                if tile in selected
                        if selected_word().length > 2 and is_word(word) and tile is selected.last()