diff --git a/OpenDreamRuntime/Procs/DMProc.cs b/OpenDreamRuntime/Procs/DMProc.cs index ea4a444952..541488c700 100644 --- a/OpenDreamRuntime/Procs/DMProc.cs +++ b/OpenDreamRuntime/Procs/DMProc.cs @@ -142,7 +142,7 @@ private static List GetArgumentNames(ProcDefinitionJson json) { return null; } else { var argumentTypes = new List(json.Arguments.Count); - argumentTypes.AddRange(json.Arguments.Select(a => (DMValueType)a.Type)); + argumentTypes.AddRange(json.Arguments.Select(a => a.Type)); return argumentTypes; } }