Added tuned flag.
authorCMDR furrycat <elite@furrycat.net>
Mon, 13 Jun 2016 09:05:24 +0000 (05:05 -0400)
committerCMDR furrycat <elite@furrycat.net>
Mon, 13 Jun 2016 09:05:24 +0000 (05:05 -0400)
propel/build/classes/buckyball/Entry.php

index 2af49aa..d32af6c 100644 (file)
@@ -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) {