diff options
-rw-r--r-- | app/controllers/application_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 0ea8f47..f3de3a8 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -8,7 +8,7 @@ class ApplicationController < ActionController::Base end def redirect_if_no_active_character - redirect_to new_character_path unless current_user.nil? || current_char + redirect_to new_character_path if (current_user && current_char.nil?) end def roll(sides) |