Skip to content

Commit c9209d1

Browse files
committed
Fix color_log args
1 parent 79da0e7 commit c9209d1

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

build/gitbook/globals/client.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ Returns x, y, z world coordinates of the game's camera position, or nil on failu
3131
Argument | Type | Description
3232
-------- | ---- | -----------
3333
**r** | number | Red (0-255)
34-
**g** | number | Red (0-255)
35-
**b** | number | Red (0-255)
34+
**g** | number | Green (0-255)
35+
**b** | number | Blue (0-255)
3636
**msg** | string | The message
3737
**...** | | Comma-separated arguments to concatenate with msg.
3838

build/globals.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,12 +229,12 @@
229229
},
230230
{
231231
"name": "g",
232-
"description": "Red (0-255)",
232+
"description": "Green (0-255)",
233233
"type": "number"
234234
},
235235
{
236236
"name": "b",
237-
"description": "Red (0-255)",
237+
"description": "Blue (0-255)",
238238
"type": "number"
239239
},
240240
{

src/extra_docs.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{
2-
"globals_patch": [],
2+
"globals_patch": [
3+
{"op": "replace", "path": "client/color_log/args/1", "value": {"name": "g", "description": "Green (0-255)"}},
4+
{"op": "replace", "path": "client/color_log/args/2", "value": {"name": "b", "description": "Blue (0-255)"}}
5+
],
36
"globals_merge": {
47
"bit": {
58
"arshift": {

0 commit comments

Comments
 (0)