Aumenta il numero di ratti generati da 5 a 50 nel gioco MiceMaze

This commit is contained in:
2024-12-15 21:25:17 +01:00
parent aebd07de17
commit 0817b9143c
+1 -1
View File
@@ -17,7 +17,7 @@ class MiceMaze:
self.units = {} self.units = {}
self.unit_positions = {} self.unit_positions = {}
self.unit_positions_before = {} self.unit_positions_before = {}
for _ in range(5): for _ in range(50):
self.new_rat() self.new_rat()
def new_rat(self, position=None): def new_rat(self, position=None):