Skip to content

Commit

Permalink
bot: исправляет баг в botGenAttack()
Browse files Browse the repository at this point in the history
    Бот атаковал геном самого себя, вместо генома жертвы.
  • Loading branch information
xlam committed Oct 3, 2018
1 parent 7e36549 commit 8a85c6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ru/cyberbiology/Bot.java
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,7 @@ void botGenAttack(Bot bot) { // вычисляем кто у нас перед
if (bot2.alive == LV_ALIVE) { // если там живой бот
bot.health = bot.health - 10; // то атакуюий бот теряет на атаку 10 энергии
if (bot.health > 0) {
bot.modifyMind();
bot2.modifyMind();
}
}
}
Expand Down

0 comments on commit 8a85c6e

Please sign in to comment.