Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruzihm committed Feb 24, 2025
1 parent 05463bd commit 3ae5ab5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenDreamRuntime/Procs/DMProc.cs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ private static List<string> GetArgumentNames(ProcDefinitionJson json) {
return null;
} else {
var argumentTypes = new List<DMValueType>(json.Arguments.Count);
argumentTypes.AddRange(json.Arguments.Select(a => (DMValueType)a.Type));
argumentTypes.AddRange(json.Arguments.Select(a => a.Type));
return argumentTypes;
}
}
Expand Down

0 comments on commit 3ae5ab5

Please sign in to comment.