Skip to content

Commit

Permalink
-Fix (OpenDUNE#100): Fremen troops did not attack structures.
Browse files Browse the repository at this point in the history
  • Loading branch information
wangds authored and rofl0r committed Dec 17, 2012
1 parent ee68a03 commit 75a5c94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/map.c
Expand Up @@ -1439,7 +1439,7 @@ bool Map_UnveilTile(uint16 packed, uint8 houseID)
s = Structure_Get_ByPackedTile(packed);
if (s != NULL) {
s->o.seenByHouses |= 1 << houseID;
if (s->o.houseID == HOUSE_ATREIDES) s->o.seenByHouses |= 1 << HOUSE_FREMEN;
if (houseID == HOUSE_ATREIDES) s->o.seenByHouses |= 1 << HOUSE_FREMEN;
}

Map_UnveilTile_Neighbour(packed);
Expand Down

0 comments on commit 75a5c94

Please sign in to comment.