Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
x87 committed May 16, 2022
1 parent cb6f68e commit e85600a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion editor/validate-commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ forEach(content.extensions, (extension) => {
Object.entries(errorHandlers).forEach(([key, cb]) => {
if (cb(command, extension.commands)) {
console.error(
`Error: ${translations?.ui?.errors?.command?.[key]}, id: ${command.id}, extension: ${extension.name}`
`Error: ${translations?.ui?.errors?.command?.[key]}, name: ${command.name}, extension: ${extension.name}`
);
exitStatus = 1;
}
Expand Down
12 changes: 6 additions & 6 deletions gta_iv/gta_iv.json
Original file line number Diff line number Diff line change
Expand Up @@ -7529,7 +7529,7 @@
"output": [],
"name": "DROP_OBJECT",
"num_params": 2,
"short_desc": "Make the ped drop an object they are holding"
"short_desc": "Makes the ped drop an object they are holding"
},
{
"input": [],
Expand Down Expand Up @@ -11530,7 +11530,7 @@
],
"name": "GET_HASH_KEY",
"num_params": 2,
"short_desc": "Get a hash key that is required for spawning peds, vehicles, objects, etc"
"short_desc": "Calculates a hash key that is required for spawning peds, vehicles, objects, etc"
},
{
"input": [
Expand Down Expand Up @@ -15419,7 +15419,7 @@
"output": [],
"name": "GET_VEHICLE_CLASS",
"num_params": 0,
"short_desc": "Set the class pointer to -1 (dummy function)"
"short_desc": "Sets the class pointer to -1 (dummy function)"
},
{
"input": [
Expand Down Expand Up @@ -15733,7 +15733,7 @@
"output": [],
"name": "GIVE_PED_AMBIENT_OBJECT",
"num_params": 2,
"short_desc": "Give an ambient object to the Ped, and will load/play proper ambient animations for some of the objects. Model must be loaded before calling this function, or game might crash"
"short_desc": "Gives an ambient object to the character, and plays proper ambient animations for some of the objects. Model must be loaded before calling this function, or game might crash"
},
{
"input": [
Expand Down Expand Up @@ -29862,7 +29862,7 @@
"output": [],
"name": "SET_CHAR_DRUGGED_UP",
"num_params": 2,
"short_desc": "Set the character drugged up, if set to true"
"short_desc": "Sets the character drugged up"
},
{
"input": [
Expand Down Expand Up @@ -38147,7 +38147,7 @@
"output": [],
"name": "TASK_CHAR_SLIDE_TO_COORD",
"num_params": 6,
"short_desc": "Make the specified character slide to the given coordinates. The character will walk to the approximate coordinate, then slide to the exact coordinate"
"short_desc": "Makes the character slide to the given coordinates. The character will walk to the approximate coordinate, then slide to the exact coordinate"
},
{
"input": [
Expand Down

0 comments on commit e85600a

Please sign in to comment.