예제 #1
0
  /**
   * Method onDeath.
   *
   * @param killer Creature
   */
  @Override
  protected void onDeath(Creature killer) {
    _openLock.lock();

    try {
      setGeoOpen(true);
    } finally {
      _openLock.unlock();
    }
    super.onDeath(killer);
  }