Skip to content

Commit 6e3a17f

Browse files
committed
bugfix, version bump, copyright bump
1 parent a572586 commit 6e3a17f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: control.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ local function updateIndicators()
488488
-- remove existing indicators
489489
for y,row in pairs(global.terminal_belts) do
490490
for x,belt in pairs(row) do
491-
if belt.indicator.valid then belt.indicator.destroy() end
491+
if belt.indicator and belt.indicator.valid then belt.indicator.destroy() end
492492
belt.indicator = nil
493493
end
494494
end

Diff for: info.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "belt-overflow",
3-
"version": "0.15.0",
3+
"version": "0.15.1",
44
"title": "Belt Overflow",
55
"author": "Sparr",
66
"homepage": "http://github.com/sparr/factorio-mod-belt-overflow",

Diff for: license.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2016 Clarence "Sparr" Risher
1+
Copyright (c) 2017 Clarence "Sparr" Risher
22
Copyright (c) 2015 GopherAtl
33

44
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

0 commit comments

Comments
 (0)