From: CMDR furrycat Date: Mon, 13 Jun 2016 09:05:24 +0000 (-0400) Subject: Added tuned flag. X-Git-Url: http://git.furryclan.net/?a=commitdiff_plain;h=a9a2ae32db9ce1bc7eaad99aaca5ab095e073fc1;p=furrycat%2Frace-o-matic.git Added tuned flag. --- diff --git a/propel/build/classes/buckyball/Entry.php b/propel/build/classes/buckyball/Entry.php index 2af49aa..d32af6c 100644 --- a/propel/build/classes/buckyball/Entry.php +++ b/propel/build/classes/buckyball/Entry.php @@ -22,7 +22,8 @@ class Entry extends BaseEntry '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() { @@ -152,6 +153,10 @@ class Entry extends BaseEntry return $this->hasEndorsement('s'); } + function tuned() { + return $this->hasEndorsement('t'); + } + function getEndorsementString($delimiter = ',') { $ret = array(); foreach ($this->EndorsementKeys() as $e) {