diff options
author | David Gay <david@davidgay.org> | 2021-05-25 20:31:41 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-05-25 20:31:41 -0400 |
commit | f62c26d1dade224871a3043e1e47963b358bd345 (patch) | |
tree | 9a92abaf99e8ccbde1185c1c5047b81e25e702ba /app/controllers | |
parent | ca9d189e51b7467f539d906a6e891fa4a7caa2fc (diff) |
stop_activity
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/game_controller.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/controllers/game_controller.rb b/app/controllers/game_controller.rb index f1387e0..c5bfdbc 100644 --- a/app/controllers/game_controller.rb +++ b/app/controllers/game_controller.rb @@ -1,4 +1,9 @@ class GameController < ApplicationController + def stop_activity + current_char.stop_activity + redirect_to locations_path + end + def finish_activity @results = [] return unless current_char.activity_time_remaining <= 0 |