diff --git a/game_theory_of_life.py b/game_theory_of_life.py index 8f4e111..2a9fc07 100644 --- a/game_theory_of_life.py +++ b/game_theory_of_life.py @@ -17,7 +17,7 @@ for pos_y in range(0, mapa.dimensao[0]): # escolher uma estrategia aleatoria tmp_estrategia = random.choice(ModEstrategia.listaNomesEstrategias()) # criar Agente com estrategia aleatoria e colocar na posicao y e x - mapa.mundo[pos_y][pos_x] = Agente(tmp_estrategia, (pos_x, pos_y)) + mapa.mundo[pos_y][pos_x] = Agente(tmp_estrategia, (pos_y, pos_x)) # Gui.App(mapa)