- no GUIDs in chat for players or portal details - so remove player GUID related functions - remove player guid code from COMM - update portal_info functions to compare to player name rather than guid
19 lines
373 B
JavaScript
19 lines
373 B
JavaScript
// PLAYER NAMES //////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// test to see if a specific player GUID is a special system account (e.g. __JARVIS__, __ADA__) that shouldn't
|
|
// be listed as a player
|
|
window.isSystemPlayer = function(name) {
|
|
|
|
switch (name) {
|
|
case '__ADA__':
|
|
case '__JARVIS__':
|
|
return true;
|
|
|
|
default:
|
|
return false;
|
|
}
|
|
|
|
}
|