summaryrefslogtreecommitdiff
path: root/app/controllers/characters
diff options
context:
space:
mode:
authorDavid Gay <david@davidgay.org>2021-05-19 21:16:15 -0400
committerDavid Gay <david@davidgay.org>2021-05-19 21:16:15 -0400
commit5afdcd12f04102b5cf5d5a310981bc576a992119 (patch)
tree2f8a8768856268cf755a6c4eb82f768f8c02affc /app/controllers/characters
parente941a28056142ee239bbba623f03537aab0ae039 (diff)
Implement crafting from the hearth forge
Diffstat (limited to 'app/controllers/characters')
-rw-r--r--app/controllers/characters/hearth_controller.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/controllers/characters/hearth_controller.rb b/app/controllers/characters/hearth_controller.rb
index f2d2bf7..abe8232 100644
--- a/app/controllers/characters/hearth_controller.rb
+++ b/app/controllers/characters/hearth_controller.rb
@@ -2,5 +2,6 @@ class Characters::HearthController < ApplicationController
def index
@all_amenities = HearthAmenity.all
@construct_activities = Activity.where("gid like ?", "construct_%")
+ @forge_activities = Activity.where("gid like ?", "craft_%")
end
end