diff --git a/scripts/server/misc.js b/scripts/server/misc.js index cebb1de4..cccdae41 100644 --- a/scripts/server/misc.js +++ b/scripts/server/misc.js @@ -472,7 +472,7 @@ function getPlayerInfoCommand(command, params, client) { ["Account", `${getPlayerData(targetClient).accountData.name}{mediumGrey}[${getPlayerData(targetClient).accountData.databaseId}]{ALTCOLOUR}`], ["Character", `${getCharacterFullName(targetClient)}{mediumGrey}[${getPlayerCurrentSubAccount(targetClient).databaseId}]{ALTCOLOUR}`], ["Connected", `${getTimeDifferenceDisplay(getCurrentUnixTimestamp(), getPlayerData(targetClient).connectTime)} ago`], - ["Registered", `${registerDate.toLocaleDateString()}`], + ["Registered", `${registerDate.toLocaleDateString("en-GB")}`], ["Game Version", `${targetClient.gameVersion}`], ["Script Version", `${scriptVersion}`], ["Client Version", `${getPlayerData(targetClient).clientVersion}`], @@ -480,7 +480,7 @@ function getPlayerInfoCommand(command, params, client) { ["Skin", `${skinName}{mediumGrey}[Model: ${skinModel}/Index: ${skinIndex}]{ALTCOLOUR}`], ["Clan", `${clan}`], ["Job", `${job}`], - ["Current Date", `${currentDate.toLocaleDateString()}`], + ["Current Date", `${currentDate.toLocaleDateString("en-GB")}`], ]; let stats = tempStats.map(stat => `{MAINCOLOUR}${stat[0]}: {ALTCOLOUR}${stat[1]} {MAINCOLOUR}`);