lib/sportradar/api/basketball/ncaamb/game.rb in sportradar-api-0.11.1 vs lib/sportradar/api/basketball/ncaamb/game.rb in sportradar-api-0.11.3
- old
+ new
@@ -5,15 +5,15 @@
class Game < Sportradar::Api::Basketball::Game
# NCAA MB specific
def period_display
- if period > 5
- "#{period - 4}OT"
- elsif period == 5
+ if period > 3
+ "#{period - 2}OT"
+ elsif period == 3
'OT'
else
- "Q#{period}"
+ "#{period}H"
end
end
def team_class
Team
\ No newline at end of file