Module:NameGenerator/NamingTable: Difference between revisions

added get_keys
(added 0s to numbers of -fixes when there are none)
(added get_keys)
Line 1: Line 1:
return {
local naming = {
qudish = {
qudish = {
HyphenationChance = 10,
HyphenationChance = 10,
Line 3,863: Line 3,864:
},
},
}
}
naming.get_keys = function()
keys = {}
for key, _ in pairs(naming) do
keys[key] = true
end
return keys
end
return naming