diff options
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/characters/hearth_controller.rb | 6 |
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 |