17 lines
433 B
Lua
17 lines
433 B
Lua
|
|
-- blacklist vehicle types from automatic sync (automobile, bike, boat, heli, plane, submarine, trailer, train)
|
|
typeBlacklist = {
|
|
"bike",
|
|
"boat",
|
|
"heli",
|
|
"plane",
|
|
"submarine",
|
|
"train"
|
|
}
|
|
|
|
-- blacklist vehicle models from automatic sync (put names in backticks, e.g. `adder`)
|
|
modelBlacklist = {}
|
|
|
|
-- blacklist license plates from automatic sync (supports partial strings; not case sensitive)
|
|
plateBlacklist = {}
|