Make jumbled rooms more likely

This commit is contained in:
Linus Probert 2019-03-09 08:55:59 +01:00
parent 7ab5ece83b
commit d749861477
1 changed files with 1 additions and 1 deletions

View File

@ -326,7 +326,7 @@ end
function pickALayout(matrix)
-- Chose a random layout
if random(2) == 1 then
if random(3) == 1 then
return matrix[random(#matrix)]
else
return createJumbleLayout(matrix)