diff options
| -rw-r--r-- | beescroll.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/beescroll.lua b/beescroll.lua index 4de86fa..7303d76 100644 --- a/beescroll.lua +++ b/beescroll.lua @@ -68,7 +68,7 @@ local function beecount() 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, ("%4d"):format(n), " bees ", norm_color} + return {colors.yellow, n, " bees ", norm_color} end local function timeframe() |
