Search found 2 matches
- Fri Oct 07, 2016 4:20 am
- Forum: Mods
- Topic: [MOD 0.16] Vehicle Wagon 1.2.5
- Replies: 100
- Views: 58560
Re: [MOD 0.14] Vehicle Wagon 1.0.4
Cool! Thanks!
- Fri Oct 07, 2016 12:42 am
- Forum: Mods
- Topic: [MOD 0.16] Vehicle Wagon 1.2.5
- Replies: 100
- Views: 58560
Re: [MOD 0.14] Vehicle Wagon 1.0.3
I was still getting a "nil filters" error with the latest (1.0.3) version of the mod. Changing this code:
function setFilters(entity, filters)
for i = 2, 3 do
to this:
function setFilters(entity, filters)
if filters == nil then
filters = {}
end
for i = 2, 3 do
fixed the problem
function setFilters(entity, filters)
for i = 2, 3 do
to this:
function setFilters(entity, filters)
if filters == nil then
filters = {}
end
for i = 2, 3 do
fixed the problem