10-12-2015, 11:04 AM
Line 173 and 189
This logic will release the fish if it's the 2nd or 3rd in white-list.
return true after for loop.
Code:
for mustkeep in StringSplit(whitelistHQ,",") do
if (mustkeep == lastCatch) then
reutrn false
else
return true
end
end
Code:
for mustkeep in StringSplit(whitelist,",") do
if (mustkeep == lastCatch) then
reutrn false
else
return true
end
end
This logic will release the fish if it's the 2nd or 3rd in white-list.
return true after for loop.