Fix offset radio IDs in radiostations list

This commit is contained in:
Vortrex
2021-11-25 04:17:29 -06:00
parent ed5edde7a3
commit ab5555b565

View File

@@ -196,7 +196,7 @@ function showRadioStationListCommand(command, params, client) {
messagePlayerInfo(client, `{clanOrange}== {jobYellow}Radio Stations {clanOrange}===========================`); messagePlayerInfo(client, `{clanOrange}== {jobYellow}Radio Stations {clanOrange}===========================`);
for(let i in chunkedList) { for(let i in chunkedList) {
messagePlayerInfo(client, chunkedList[i].join(", ")); messagePlayerInfo(client, chunkedList[i+1].join(", "));
} }
} }