* Gets the "dropped on non-player turn" flag. This is to determine whether or not * aliens should attempt to pick this item up, as items dropped by the player may be "honey traps". * @return True if the aliens dropped the item. */
| 505 | * @return True if the aliens dropped the item. |
| 506 | */ |
| 507 | bool BattleItem::getTurnFlag() const |
| 508 | { |
| 509 | return _droppedOnAlienTurn; |
| 510 | } |
| 511 | |
| 512 | /** |
| 513 | * Sets the "dropped on non-player turn" flag. This is set when the item is dropped in the battlescape |