This commit is contained in:
Administrator 2022-08-28 17:03:22 +03:00
parent d86c05fbe0
commit a984f088b6

View File

@ -104,7 +104,7 @@ def shoot(request):
if pos == 0:
player2.field = new_symb + player2.field[1:]
elif pos == 99:
player2.field[:99] + new_symb
player2.field[:100] + new_symb
else:
player2.field = player2.field[:pos] + new_symb + player2.field[pos + 1:]
player2.save()