| 1515 | } |
| 1516 | |
| 1517 | void SetLaraMonkeyFallAnimation(ItemInfo* item) |
| 1518 | { |
| 1519 | // HACK: Disallow release during 180 turn action. |
| 1520 | if (item->Animation.ActiveState == LS_MONKEY_TURN_180) |
| 1521 | return; |
| 1522 | |
| 1523 | SetAnimation(item, LA_MONKEY_TO_FREEFALL); |
| 1524 | SetLaraMonkeyRelease(item); |
| 1525 | } |
| 1526 | |
| 1527 | void SetLaraMonkeyRelease(ItemInfo* item) |
| 1528 | { |
no test coverage detected