Tons of fixes, change netevent prefix.

This commit is contained in:
Vortrex
2021-07-18 20:39:49 -05:00
parent e29bf420de
commit 9ce391ef9a
35 changed files with 898 additions and 559 deletions

View File

@@ -19,8 +19,19 @@ function setPlayerAccentText(client, text) {
// ===========================================================================
function doesPlayerHaveAccent(client, text) {
function doesPlayerHaveAccent(client) {
return (getPlayerCurrentSubAccount(client).accent != "");
}
// ===========================================================================
function getPlayerAccentInlineOutput(client) {
let outputText = "";
//if(doesPlayerHaveAccent(client)) {
// outputText = `[${getPlayerAccentText(client)}]`;
//}
return outputText;
}
// ===========================================================================