forked from github/server
Bugfix: Zählung der Möglichen Kontrahenten vergisst Versteinerung
This commit is contained in:
parent
afc42b9c4c
commit
13e019ffee
|
@ -1403,12 +1403,12 @@ select_opponent(battle * b, troop at, int minrow, int maxrow)
|
|||
}
|
||||
minrow = max(minrow, FIGHT_ROW);
|
||||
|
||||
if (dt.fighter!=NULL && dt.index<dt.fighter->alive) {
|
||||
if (dt.fighter!=NULL && dt.index<dt.fighter->alive-dt.fighter->removed) {
|
||||
fighter * df = dt.fighter;
|
||||
int row = get_unitrow(df);
|
||||
if (row>=minrow && row<=maxrow) {
|
||||
troop ot = df->person[dt.index].opponent;
|
||||
if (ot.fighter==NULL || ot.index>=ot.fighter->alive) {
|
||||
if (ot.fighter==NULL || ot.index>=ot.fighter->alive-ot.fighter->removed) {
|
||||
df->person[dt.index].opponent = at;
|
||||
}
|
||||
return dt;
|
||||
|
@ -1418,7 +1418,7 @@ select_opponent(battle * b, troop at, int minrow, int maxrow)
|
|||
if (dt.fighter!=NULL) {
|
||||
fighter * df = dt.fighter;
|
||||
troop ot = df->person[dt.index].opponent;
|
||||
if (ot.fighter==NULL || ot.index>=ot.fighter->alive) {
|
||||
if (ot.fighter==NULL || ot.index>=ot.fighter->alive-ot.fighter->removed) {
|
||||
df->person[dt.index].opponent = at;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue