'j' => array('joker card', false, 1 << 3),
'x' => array('excluded from ranking', false, 1 << 4),
'm' => array('missing evidence', false, 1 << 5),
- 's' => array('shields', true, 1 << 6)
+ 's' => array('shields', true, 1 << 6),
+ 't' => array('tuned', false, 1 << 7)
);
function Endorsements() {
return $this->hasEndorsement('s');
}
+ function tuned() {
+ return $this->hasEndorsement('t');
+ }
+
function getEndorsementString($delimiter = ',') {
$ret = array();
foreach ($this->EndorsementKeys() as $e) {