Skip to content

Commit

Permalink
0.1.13
Browse files Browse the repository at this point in the history
Fixed missing local declaration for variable.
  • Loading branch information
softmix committed Dec 29, 2019
1 parent c45bd30 commit 9ef5fed
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion autodeconstruct.lua
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ end

function autodeconstruct.init_globals()
global.max_radius = 0.99
drill_entities = find_all_entities('mining-drill')
local drill_entities = find_all_entities('mining-drill')
for _, drill_entity in pairs(drill_entities) do
autodeconstruct.check_drill(drill_entity)
end
Expand Down
5 changes: 5 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
---------------------------------------------------------------------------------------------------
Version: 0.1.13
Date: 2019-12-29
Changes:
- Fixed missing local declaration for variable
---------------------------------------------------------------------------------------------------
Version: 0.1.12
Date: 2019-02-28
Changes:
Expand Down
2 changes: 1 addition & 1 deletion info.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "AutoDeconstruct",
"version": "0.1.12",
"version": "0.1.13",
"factorio_version":"0.17",
"title": "Auto Deconstruct",
"author": "mindmix",
Expand Down

0 comments on commit 9ef5fed

Please sign in to comment.