Skip to content

Commit

Permalink
civ killed hint
Browse files Browse the repository at this point in the history
  • Loading branch information
nomisum committed Mar 15, 2016
1 parent 62eb21a commit 5c09c98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions player/civKilledMarker.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ createCivKilledMarker = {
_closestTown = nearestLocation [_pos,"NameCity"];
_closestVillage = nearestLocation [_pos,"NameVillage"];

_distanceTown = position _closestTown distance _pos;
_distanceVillage = position _closestVillage distance _pos;
_distanceTown = _closestTown distance _pos;
_distanceVillage = _closestVillage distance _pos;

if (_distanceTown < _distanceVillage) then {
_town_pos = position _closestTown;
Expand Down

0 comments on commit 5c09c98

Please sign in to comment.