summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrebecca <ubq323@ubq323.website>2026-03-02 21:00:27 +0000
committerrebecca <ubq323@ubq323.website>2026-03-02 21:00:27 +0000
commit7088bd2ce7f764d2f081f788fc7bc5c2a03e2906 (patch)
treefab8a851773176472f8a0476c76614f80a8da4db
parent8d8f732c198f8da78737eaac101b37f19ad5a67a (diff)
beescrollHEADtrunk
-rw-r--r--beescroll.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/beescroll.lua b/beescroll.lua
index 7303d76..a4083b5 100644
--- a/beescroll.lua
+++ b/beescroll.lua
@@ -65,10 +65,11 @@ local function pretitle()
end
local function beecount()
+ if math.random() < 0.01 then return {colors.white, "some bees ", norm_color} end
if math.random() < 0.2 then return {colors.yellow, "all the bees in the world ", norm_color} end
local n = math.random(9)
while math.random() < 0.75 and n < 1000 do n = n*10 + math.random(0,9) end
- return {colors.yellow, n, " bees ", norm_color}
+ return {colors.yellow, tostring(n), " bees ", norm_color}
end
local function timeframe()