From a41a5504f4fe0d5204f939ce32a0cfc70f068b49 Mon Sep 17 00:00:00 2001 From: sammyette Date: Fri, 26 Jul 2024 18:07:55 -0400 Subject: [PATCH] fix(nature/tips): opt typo --- nature/opts/tips.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nature/opts/tips.lua b/nature/opts/tips.lua index d25e105..c8b36e3 100644 --- a/nature/opts/tips.lua +++ b/nature/opts/tips.lua @@ -27,7 +27,7 @@ hilbish.tips = { } bait.catch('hilbish.init', function() - if hilbish.interactive and hilbish.opts.tip then + if hilbish.interactive and hilbish.opts.tips then local idx = math.random(1, #hilbish.tips) print(lunacolors.format(PREAMBLE .. "\nTip: " .. hilbish.tips[idx])) end