Make rooms more frequent

master
GreenXenith 2020-03-04 13:07:11 -08:00
parent 06735fcaf2
commit 717ce5bf50
1 changed files with 3 additions and 3 deletions

View File

@ -43,9 +43,9 @@ class Generator():
self.place_corridors()
def place_rooms(self):
for _ in range(rand(4, 15)):
width = rand(6, 16)
height = rand(6, 16)
for _ in range(rand(10, 30)):
width = rand(4, 10)
height = rand(4, 10)
x = rand(0, 60)
y = rand(0, 60)