Mass re-indentation

(Also removes some trailing whitespace)
This commit is contained in:
2014-12-15 08:43:14 -05:00
parent aaad894ccb
commit 140e0b58ef
25 changed files with 2723 additions and 2723 deletions

View File

@@ -649,10 +649,10 @@ location push_loc(location from_where,location to_where)
return loc_to_try;
}
if(sight_obscurity(loc_to_try.x,loc_to_try.y) > 0 ||
scenario.ter_types[univ.town->terrain(loc_to_try.x,loc_to_try.y)].blockage != eTerObstruct::CLEAR ||
(loc_off_act_area(loc_to_try)) ||
(monst_there(loc_to_try) < 90) ||
(pc_there(loc_to_try) < 6))
scenario.ter_types[univ.town->terrain(loc_to_try.x,loc_to_try.y)].blockage != eTerObstruct::CLEAR ||
(loc_off_act_area(loc_to_try)) ||
(monst_there(loc_to_try) < 90) ||
(pc_there(loc_to_try) < 6))
return from_where;
else return loc_to_try;
}