summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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()