Ejemplo n.º 1
0
 /**
  * Parse the loot comment information from the monster file.
  *
  * @param  \pandaac\Exporter\Contracts\Reader  $reader
  * @return string
  */
 protected function lootComments(Reader $reader)
 {
     if (!($reader->isComment() and $reader->parent('loot'))) {
         return false;
     }
     return trim($reader->value());
 }