Skip to content

Commit

Permalink
tr2/objects/harpoon_bolt: test target item status
Browse files Browse the repository at this point in the history
This tests that a target item for a harpoon bolt is a fully activated
creature.

Resolves LostArtefacts#1804.
  • Loading branch information
lahm86 committed Nov 2, 2024
1 parent fc4fe98 commit 4a7f0ec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/tr2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
- fixed grenades launched at too slow speeds (#1760, regression from 0.3)
- fixed the dragon counting as more than one kill if allowed to revive (#1771)
- fixed a crash when firing grenades at Xian guards in statue form (#1561)
- fixed harpoon bolts damaging inactive enemies (#1804)

## [0.5](https://github.com/LostArtefacts/TRX/compare/afaf12a...tr2-0.5) - 2024-10-08
- added `/sfx` command
Expand Down
1 change: 1 addition & 0 deletions docs/tr2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ decompilation process. We recognize that there is much work to be done.
- fixed the ammo counter being hidden while a demo plays in NG+
- fixed the game hanging if exited during the level stats, credits, or final stats
- fixed a crash when firing grenades at Xian guards in statue form
- fixed harpoon bolts damaging inactive enemies

#### Statistics
- fixed the dragon counting as more than one kill if allowed to revive
Expand Down
2 changes: 1 addition & 1 deletion src/tr2/game/objects/general/harpoon_bolt.c
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ void __cdecl HarpoonBolt_Control(const int16_t item_num)
if (target_item->object_id == O_WINDOW_1) {
SmashWindow(target_num);
} else {
if (target_obj->intelligent) {
if (target_obj->intelligent && target_item->status == IS_ACTIVE) {
DoLotsOfBlood(
item->pos.x, item->pos.y, item->pos.z, 0, 0, item->room_num,
5);
Expand Down

0 comments on commit 4a7f0ec

Please sign in to comment.