Some race commands (unfinished)

This commit is contained in:
Vortrex
2022-05-24 01:18:46 -05:00
parent 4766890f2f
commit 42b8125bc0
2 changed files with 79 additions and 0 deletions

View File

@@ -253,3 +253,13 @@ function messagePlayerHelpContent(client, messageString) {
}
// ===========================================================================
function messagePlayersInRace(raceId, message) {
for(let i in clients) {
if(getPlayerRace(clients[i]) == raceId) {
messagePlayerNormal(clients[i], message);
}
}
}
// ===========================================================================