Make name follow style convention

This commit is contained in:
Charles Peyrat 2021-01-07 05:02:49 +01:00
parent f5e5e365d4
commit 9fb366aaab
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ class Generator:
def __init__(self, params: dict = DEFAULT_PARAMS):
self.params = params
def createCircularRoom(self):
def create_circular_room(self):
if random() < self.params["large_circular_room"]:
r = randint(5, 10)**2
else: