Merge Game, FlyingText, Common and table

This commit is contained in:
Cooldude2606
2024-09-30 22:32:35 +01:00
parent 3145f7e904
commit f8c74c9dd3
66 changed files with 817 additions and 2035 deletions

View File

@@ -40,7 +40,7 @@ PlayerColours:on_load(function(player_name, player_colour)
else
local colour_name = "white"
while config.disallow[colour_name] do
colour_name = table.get_random_dictionary_entry(Colours, true)
colour_name = table.get_random(Colours, true)
end
player_colour = { Colours[colour_name], lighten(Colours[colour_name]) }