Browse Source

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

master
Matteo Benedetto 1 year ago
parent
commit
0817b9143c
  1. 2
      rats.py

2
rats.py

@ -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):

Loading…
Cancel
Save