Fixed allowed data types

This commit is contained in:
jonpas 2015-09-26 23:02:18 +02:00
parent 4a5d6cade1
commit b787286837
2 changed files with 6 additions and 6 deletions

View File

@ -21,11 +21,11 @@
private ["_currentSlideshow", "_slidesAction", "_varString"];
params [
["_objects", [], []],
["_controllers", [], []],
["_images", [], []],
["_names", [], []],
["_duration", 0, 0]
["_objects", [], [[]] ],
["_controllers", [], [[]] ],
["_images", [], [[]] ],
["_names", [], [[]] ],
["_duration", 0, [0]]
];
// Verify data

View File

@ -39,4 +39,4 @@ _duration = _logic getVariable ["Duration", 0];
// Prepare with actions
[_objects, _controllers, _images, _names, _duration] call FUNC(createSlideshow);
ACE_LOGINFO_2("Slideshow Module Initialized for: %1 with Duration: %2", _objects, _duration);
ACE_LOGINFO_1("Slideshow Module Initialized on %1 Objects", count _objects);