diff options
| author | rebecca <ubq323@ubq323.website> | 2026-03-02 20:59:30 +0000 |
|---|---|---|
| committer | rebecca <ubq323@ubq323.website> | 2026-03-02 20:59:30 +0000 |
| commit | 8d8f732c198f8da78737eaac101b37f19ad5a67a (patch) | |
| tree | 79b428def4e8cb57484660bfb3a70afe2d878127 | |
| parent | ef0452adb8e5995ba26494e703ba6e2702a7d308 (diff) | |
beescroll
| -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() |
