Skip to content

Commit

Permalink
Actually generate site.entities_to_be_overlaid again
Browse files Browse the repository at this point in the history
Fixes #107.
  • Loading branch information
narc0tiq committed Apr 20, 2019
1 parent 9790331 commit d2e4499
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
---------------------------------------------------------------------------------------------------
Version: 0.8.8
Date: 2019-04-20
Bugfixes:
- Actually finish transitioning site expansion to the new ore_tracker introduced in v0.8.6 (fixes #107).
---------------------------------------------------------------------------------------------------
Version: 0.8.7
Date: 2019-04-18
Changes:
Expand Down
3 changes: 2 additions & 1 deletion resmon.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1085,7 +1085,8 @@ function resmon.start_recreate_overlay_existing_site(player_index)
if tracking_data then
local ent = tracking_data.entity
if ent and ent.valid then
site.entities_to_be_overlaid[key] = pos
local key = position_to_string(ent.position)
site.entities_to_be_overlaid[key] = ent.position
site.entities_to_be_overlaid_count = site.entities_to_be_overlaid_count + 1
end
end
Expand Down

0 comments on commit d2e4499

Please sign in to comment.