Changeset 201 for dev/common/includes/class.killlist.php
- Timestamp:
- 04/05/07 02:52:14 (16 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
dev/common/includes/class.killlist.php
r190 r201 314 314 { 315 315 $this->inv_plt_[] = $pilot->getID(); 316 if ( $this->inv_crp_ || $this->inv_all_)316 if (count($this->inv_crp_) || count($this->inv_all_)) 317 317 $this->mixedinvolved_ = true; 318 318 } … … 321 321 { 322 322 $this->inv_crp_[] = $corp->getID(); 323 if ( $this->inv_plt_ || $this->inv_all_)323 if (count($this->inv_plt_) || count($this->inv_all_)) 324 324 $this->mixedinvolved_ = true; 325 325 } … … 328 328 { 329 329 $this->inv_all_[] = $alliance->getID(); 330 if ( $this->inv_plt_ || $this->inv_crp_)330 if (count($this->inv_plt_) || count($this->inv_crp_)) 331 331 $this->mixedinvolved_ = true; 332 332 } … … 335 335 { 336 336 $this->vic_plt_[] = $pilot->getID(); 337 if ( $this->vic_crp_ || $this->vic_all_)337 if (count($this->vic_crp_) || count($this->vic_all_)) 338 338 $this->mixedvictims_ = true; 339 339 } … … 342 342 { 343 343 $this->vic_crp_[] = $corp->getID(); 344 if ( $this->vic_plt_ || $this->vic_all_)344 if (count($this->vic_plt_) || count($this->vic_all_)) 345 345 $this->mixedvictims_ = true; 346 346 } … … 349 349 { 350 350 $this->vic_all_[] = $alliance->getID(); 351 if ( $this->vic_plt_ || $this->vic_crp_)351 if (count($this->vic_plt_) || count($this->vic_crp_)) 352 352 $this->mixedvictims_ = true; 353 353 }