summaryrefslogtreecommitdiff
path: root/app/controllers/characters/hearth_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/characters/hearth_controller.rb')
-rw-r--r--app/controllers/characters/hearth_controller.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/controllers/characters/hearth_controller.rb b/app/controllers/characters/hearth_controller.rb
index 86757d8..82f72d6 100644
--- a/app/controllers/characters/hearth_controller.rb
+++ b/app/controllers/characters/hearth_controller.rb
@@ -5,7 +5,7 @@ class Characters::HearthController < ApplicationController
@amenity_activities = {
forge: [],
- labratory: [],
+ laboratory: [],
spicebench: [],
}
@@ -16,8 +16,8 @@ class Characters::HearthController < ApplicationController
case requirement_data[:gid]
when "forge"
@amenity_activities[:forge].push(activity) && next
- when "labratory"
- @amenity_activities[:labratory].push(activity) && next
+ when "laboratory"
+ @amenity_activities[:laboratory].push(activity) && next
when "spicebench"
@amenity_activities[:spicebench].push(activity) && next
else