Skip to content

Commit

Permalink
take KK "else" case as walking too
Browse files Browse the repository at this point in the history
  • Loading branch information
LevFendi committed May 11, 2024
1 parent 178c19a commit 6848e93
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion control.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9907,7 +9907,8 @@ function kk_status_prediction(pindex)
elseif target.to_be_deconstructed() == true then
result = result .. "Deconstructing marked buildings "
else
result = result .. "Active"
result = result .. "Walking"
walking = true
end
local target_dist = math.floor(util.distance(p.position, target_pos))
local dist_info = ", " .. target_dist .. " tiles to target location"
Expand Down

0 comments on commit 6848e93

Please sign in to comment.