We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55826e7 commit a6ed2e5Copy full SHA for a6ed2e5
managed/CounterStrikeSharp.API/Modules/Utils/CEntityKeyValues.cs
@@ -323,20 +323,20 @@ internal void SetValue<T>(string key, KeyValuesType type, T value)
323
{
324
if (value is matrix3x4_t matrix)
325
326
+ arguments.Add(matrix[0, 0]);
327
+ arguments.Add(matrix[0, 1]);
328
+ arguments.Add(matrix[0, 2]);
329
+ arguments.Add(matrix[0, 3]);
330
+
331
+ arguments.Add(matrix[1, 0]);
332
arguments.Add(matrix[1, 1]);
333
arguments.Add(matrix[1, 2]);
334
arguments.Add(matrix[1, 3]);
- arguments.Add(matrix[1, 4]);
335
336
+ arguments.Add(matrix[2, 0]);
337
arguments.Add(matrix[2, 1]);
338
arguments.Add(matrix[2, 2]);
339
arguments.Add(matrix[2, 3]);
- arguments.Add(matrix[2, 4]);
-
- arguments.Add(matrix[3, 1]);
- arguments.Add(matrix[3, 2]);
- arguments.Add(matrix[3, 3]);
- arguments.Add(matrix[3, 4]);
340
} else { BadTypeHandler(key, type, value); }
341
} break;
342
0 commit comments