summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--beescroll.lua9
1 files changed, 6 insertions, 3 deletions
diff --git a/beescroll.lua b/beescroll.lua
index 7863382..34a237c 100644
--- a/beescroll.lua
+++ b/beescroll.lua
@@ -78,7 +78,7 @@ local function timeframe()
end
local function news_item()
- local council = choice{colors.red, colors.blue, colors.green}, pretitle(), choice(orgtype), " ", choice(orgs), norm_color,
+ local council = {choice{colors.red, colors.blue, colors.green}, pretitle(), choice(orgtype), " ", choice(orgs), norm_color}
return {
colors.red, choice(urgent), norm_color, ": ",
choice {
@@ -92,8 +92,11 @@ local function news_item()
{ "The ", council, " has scheduled ", beecount(), "to be ", colors.brown, choice(verbs),
norm_color, " by ", timeframe() },
-- 9998 bees were exploded [mistakenly/in error/by accident/by our enemies]. the council has [ordered/decreed/decided] that 1234 bees will be boiled [instead/as compensation/as well]
- { beecount(), "were ", colors.magenta, choice(verbs), norm_color, " ", choice{"mistakenly","in error","by accident","by our enemies"}, ". The ", council, " has ",,
- choice{"ordered","decreed","decided"}, " that ", beecount(), "will be ", colors.pink, choice(verbs), norm_color, " ", choice{"instead","as compensation","as well"}, "." },
+ { beecount(), "were ", colors.magenta, choice(verbs), norm_color, " ",
+ choice{"mistakenly","in error","by accident","by our enemies"},
+ ". The ", council, " has ", choice{"ordered","decreed","decided"}, " that ",
+ beecount(), "will be ", colors.pink, choice(verbs), norm_color, " ",
+ choice{"instead","as compensation","as well","or else"}},
}, norm_color, "." }
end