From aeb3e64efce78b320e94b87ea29f80911fd277d4 Mon Sep 17 00:00:00 2001 From: "Jesse C. Fisher" Date: Mon, 17 Aug 2015 15:10:53 -0700 Subject: [PATCH] Improve comments --- app/models/play.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/models/play.rb b/app/models/play.rb index 0eb63325..bf73c68f 100644 --- a/app/models/play.rb +++ b/app/models/play.rb @@ -30,8 +30,9 @@ class Play < ActiveRecord::Base if self.game.play_to_beat # current player is not the player to beat if (self.game.player_to_beat != self.player) + # hand_type match? @truths << (self.hand_type == self.game.play_to_beat.play.hand_type) - # Compare this hand to the hand_to_beat, + # beats? @truths << (self.beats? self.game.play_to_beat.play) end end