module RubyRed::Events::Lulz

Constants

LULZ_YAML_FILE

Public Class Methods

will_lul?() click to toggle source
# File lib/rubyred/events/lulz/lulz_helper.rb, line 4
def self.will_lul?
  srand Time.now.to_i
  if (rand(1..3)) == 1
    will_lul = true
  else
    will_lul = false
  end
  return will_lul
end