2025-04-07 01:41:12 +00:00

50 lines
1.1 KiB
Lua

return {
-- If false restrictedChannels restricts all decimals, if true you need to manually add each subchannel (100.01, 100.02 etc)
whitelistSubChannels = false,
---@alias channelNumber number
---@type table<channelNumber, {jobName: boolean, jobName2: boolean}>
restrictedChannels = {
[1] = {
police = true,
ambulance = true
},
[2] = {
police = true,
ambulance = true
},
[3] = {
police = true,
ambulance = true
},
[4] = {
police = true,
ambulance = true
},
[5] = {
police = true,
ambulance = true
},
[6] = {
police = true,
ambulance = true
},
[7] = {
police = true,
ambulance = true
},
[8] = {
police = true,
ambulance = true
},
[9] = {
police = true,
ambulance = true
},
[10] = {
police = true,
ambulance = true
}
}
}