From 5ae89950fb330fd623634b98a77de259ab174b53 Mon Sep 17 00:00:00 2001 From: David Gay Date: Fri, 28 May 2021 11:26:44 -0400 Subject: Lockbox unlocking, and with it items that start activities when used --- app/controllers/application_controller.rb | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'app/controllers/application_controller.rb') diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 94859d1..0fc78a8 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -14,4 +14,17 @@ class ApplicationController < ActionController::Base def roll(sides) rand(sides) + 1 end + + private + def start_activity(activity) + if current_char.start_activity(activity, queued_actions: params[:queued_actions]) + redirect_to look_path + else + message = "You can't do that." + message += " (requires #{activity.requirements&.join(", ")})" if activity.requirements.any? + message += " (costs #{activity.costs&.join(", ")})" if activity.costs.any? + flash[:alert] = message + redirect_back(fallback_location: character_path(current_char)) + end + end end -- cgit v1.2.3