mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 10:20:58 -06:00
13 lines
290 B
Ruby
13 lines
290 B
Ruby
# frozen_string_literal: true
|
|
|
|
module DiscourseNarrativeBot
|
|
class Magic8Ball
|
|
def self.generate_answer
|
|
I18n.t(
|
|
"discourse_narrative_bot.magic_8_ball.result",
|
|
result: I18n.t("discourse_narrative_bot.magic_8_ball.answers.#{rand(1..20)}"),
|
|
)
|
|
end
|
|
end
|
|
end
|