runtime
runtime copied to clipboard
[BUG] Config select selects in the configFile hierarchy
Describe the bug
class CfgPatches {
class Addon {
name = "";
author = "";
url = "";
};
class Addon2 {};
};
class A {};
class B {};
configFile select 0 returns CfgPatches, as expected.
configFile select 1 returns Addon2
configFile select 2 returns url
(configFile >> "CfgPatches") select 0 returns CfgPatches
(configFile >> "CfgPatches") select 1 returns Addon2
(configFile >> "CfgPatches") select 2 throws The requested index two exceeds the available range of two., as expected.
To Reproduce Steps to reproduce the behavior:
- Execute
sqfvm.exe --automated --config "class CfgPatches {class Addon {};};" --sqf "(configFile >> ""CfgPatches"") select 0" - Notice
[INF] Context droped with return value 'CfgPatches'.
Expected behavior
[INF] Context droped with return value 'Addon'.
Screenshots N/A
Additional context N/A