mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
9 lines
250 B
Ruby
9 lines
250 B
Ruby
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
|