diff options
author | David Gay <david@davidgay.org> | 2021-07-05 20:30:15 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-07-05 20:30:15 -0400 |
commit | 28426519e11e72576b1a3339f47c420f9c184e49 (patch) | |
tree | ae92cce4888f8cbd038359902a6db6df557fe5cc /app/controllers | |
parent | f160f81a6daae8b478a5547078abc7c7b29ef747 (diff) |
Give characters a location, and replace the Locations view+controller with a Look view+controller
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/game_controller.rb | 2 | ||||
-rw-r--r-- | app/controllers/locations_controller.rb | 9 | ||||
-rw-r--r-- | app/controllers/look_controller.rb | 5 |
3 files changed, 6 insertions, 10 deletions
diff --git a/app/controllers/game_controller.rb b/app/controllers/game_controller.rb index 39ea6c9..4bbbf53 100644 --- a/app/controllers/game_controller.rb +++ b/app/controllers/game_controller.rb @@ -18,7 +18,7 @@ class GameController < ApplicationController def stop_activity current_char.stop_activity - redirect_to locations_path + redirect_to look_path end def finish_activity diff --git a/app/controllers/locations_controller.rb b/app/controllers/locations_controller.rb deleted file mode 100644 index 4616c3d..0000000 --- a/app/controllers/locations_controller.rb +++ /dev/null @@ -1,9 +0,0 @@ -class LocationsController < ApplicationController - def index - @locations = Location.all - end - - def show - @location = Location.find(params[:id]) - end -end diff --git a/app/controllers/look_controller.rb b/app/controllers/look_controller.rb new file mode 100644 index 0000000..e604670 --- /dev/null +++ b/app/controllers/look_controller.rb @@ -0,0 +1,5 @@ +class LookController < ApplicationController + def look + @location = current_char.location + end +end |