# File ../lib/roller/CWRP.rb, line 984
  def raise_sea_level(amount)
    amount = amount.to_f

    reset_progress 'Raising sea-level', @terrain_height.size
    @terrain_height.each do |row|
      row.map! { |height| height - amount }
      increment_progress
    end

    amount
  end