Okay, let me show you a little bash magic that I just used to find problems:
Code:
grep "\./LAModNations" LAModNations.dm | sed 's/^[^ ]* "\(.*\)"$/\1/g' | sort -f | uniq > want
find ./LAModNations -type f | sort -f > have
diff want have
This shows me inconsistencies between my LA mod and the actual files. Some of them are only additional or old files that can be safely removed, but some show real problems. I'll give you an update shortly.