summaryrefslogtreecommitdiff
path: root/app/models/hearth_planting.rb
blob: d6ae71436eeea7577419ab9b8bcd4b356273128e (plain)
1
2
3
4
5
6
7
8
9
class HearthPlanting < ApplicationRecord
  belongs_to :hearth
  belongs_to :item

  def ripens_at
    created_at + item.whatnot[:ripen_duration][:base].seconds
  end
end