Change header to normal

This commit is contained in:
Vortrex
2022-01-06 13:34:32 -06:00
parent 6a2e58cfd4
commit e5994c2998
2 changed files with 2 additions and 2 deletions

View File

@@ -707,7 +707,7 @@ function setBusinessInteriorTypeCommand(command, params, client) {
let interiorTypesList = Object.keys(getGameConfig().interiorTemplates[getServerGame()]);
let chunkedList = splitArrayIntoChunks(interiorTypesList, 10);
messagePlayerInfo(client, `{clanOrange}== {jobYellow}Interior Types {clanOrange}=======================`);
messagePlayerNormal(client, `{clanOrange}== {jobYellow}Interior Types {clanOrange}=======================`);
for(let i in chunkedList) {
messagePlayerInfo(client, chunkedList[i].join(", "));
}

View File

@@ -400,7 +400,7 @@ function setHouseInteriorTypeCommand(command, params, client) {
let interiorTypesList = Object.keys(getGameConfig().interiorTemplates[getServerGame()]);
let chunkedList = splitArrayIntoChunks(interiorTypesList, 10);
messagePlayerInfo(client, `{clanOrange}== {jobYellow}Interior Types {clanOrange}=======================`);
messagePlayerNormal(client, `{clanOrange}== {jobYellow}Interior Types {clanOrange}=======================`);
for(let i in chunkedList) {
messagePlayerInfo(client, chunkedList[i].join(", "));
}