Fix Play Now button

This commit is contained in:
Jesse C. Fisher 2021-11-20 04:06:53 -08:00
parent d5a5daaea7
commit ccfe047ff3

View File

@ -5,7 +5,7 @@ class TablesController < ApplicationController
def play_now
# First empty seat
@seat = Seat.where(user_soft_token: nil).first
@seat = Seat.where(user_soft_token: nil).select{|s| !s.player.try("is_bot?")}.first
if @seat
@seat.sit current_user
else