Skip to content

Commit 85269f9

Browse files
committed
feat(vzn-liars): update preview of config
1 parent 4d4307b commit 85269f9

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

pages/vzn-liars/config.mdx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,25 +93,29 @@ Config.Controls = {
9393

9494
### TABLES POSITION
9595

96-
- In `config/config.lua` in field called `Config.Tables` you can define, where tables to play will be placed. Additionally you can change the distance from which tables will be loaded.
96+
- In `config/config.lua` in field called `Config.Tables` you can define, where tables to play will be placed. Additionally you can change the distance from which tables will be loaded and enable/disable blip of table on map.
9797

9898
```lua filename="config/config.lua"
9999
---@class Table
100100
---@field position vector4
101+
---@field showBlip? boolean
101102
---@field loadDistance number
102103

103104
---@type Table[]
104105
Config.Tables = {
105106
{
106107
position = vec4(-560.3813, 300.1872, 83.1044, 355.6702),
108+
showBlip = false,
107109
loadDistance = 40.0
108110
},
109111
{
110112
position = vec4(-555.1752, 302.8555, 83.2291, 25.5667),
113+
showBlip = false,
111114
loadDistance = 40.0
112115
},
113116
{
114117
position = vec4(-561.3179, 286.7403, 85.3764, 188.7191),
118+
showBlip = true,
115119
loadDistance = 40.0
116120
},
117121
}

0 commit comments

Comments
 (0)