The current docs say
rowDataTypeSelectSound = SOUNDS.ABILITY_SLOTTED, -- an optional sound to play when a row of this data type is selected
Correct would be:
rowDataTypeSelectSound = "ABILITY_SLOTTED", -- an optional soundName String of table SOUNDS to play when a row of this data type is selected
If any SOUNDS.name is entered the assert for SOUNDS[SOUNDS.name] will fail!
The current docs say
rowDataTypeSelectSound = SOUNDS.ABILITY_SLOTTED, -- an optional sound to play when a row of this data type is selectedCorrect would be:
rowDataTypeSelectSound = "ABILITY_SLOTTED", -- an optional soundName String of table SOUNDS to play when a row of this data type is selectedIf any SOUNDS.name is entered the assert for SOUNDS[SOUNDS.name] will fail!