diff --git a/scripts/server/radio.js b/scripts/server/radio.js index 4e5aaf62..193da78b 100644 --- a/scripts/server/radio.js +++ b/scripts/server/radio.js @@ -242,7 +242,7 @@ function getPlayerStreamingRadioVolume(client) { * */ function showRadioStationListCommand(command, params, client) { - let stationList = getServerData().radioStations.map(function (x) { return `{ALTCOLOUR}${toInteger(x.index) + 1}: {MAINCOLOUR}${x.name}`; }); + let stationList = getServerData().radioStations.map(function (x) { return `{chatBoxListIndex}${toInteger(x.index) + 1}: {MAINCOLOUR}${x.name}`; }); let chunkedList = splitArrayIntoChunks(stationList, 4);