Beispiel #1
0
 /**
  * Does this settlement have a missionary from the given player?
  *
  * @param player The <code>Player</code> to test.
  * @return True if there is a suitable missionary present.
  */
 public boolean hasMissionary(Player player) {
   return missionary != null && player != null && player.owns(missionary);
 }