Skip to content

Commit

Permalink
Fixed CoD2 function 'getBrushModelCenter(entity)' - missing argument
Browse files Browse the repository at this point in the history
  • Loading branch information
eyza-cod2 committed Nov 8, 2024
1 parent 9f20282 commit ca9204b
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/CodFunctionsDefinitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8007,7 +8007,16 @@ defs.push(new CodFunction({
module: "Level",
supportedAt: "",
games: ['CoD2 SP', 'CoD2 MP'],
parameters: []
parameters: [
{
name: "entity",
desc: "Entity",
type: "",
isOptional: false,
isVariableLength: false,
isCallOn: false
}
]
}));

defs.push(new CodFunction({
Expand Down

0 comments on commit ca9204b

Please sign in to comment.