Jon Atkins e935902c49 misc fixes - some untested
- 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
2013-11-30 23:19:46 +00:00

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;
}
}