This commit is contained in:
Lwmte 2024-12-02 02:48:28 +01:00
parent 364458d68a
commit dbaaf9fd5e
2 changed files with 2 additions and 1 deletions

View file

@ -15,6 +15,7 @@ TombEngine releases are located in this repository (alongside with Tomb Editor):
* Fixed stutter during jumps between cameras in a flyby sequence.
* Fixed uzi targeting issues after using flycheat.
* Fixed snow particles not always melting on the ground.
* Fixed enemies not damaging Lara if she is staying on the sector where enemies were triggered.
* Fixed enemy pickups dropping on death sectors.
* Fixed Sarcophagus and Search Object pickup triggers.
* Fixed vehicle transfer not happening for levels which were not previously visited.

View file

@ -370,7 +370,6 @@ void Trigger(short const value, short const flags)
if (item->Flags & IFLAG_KILLED)
return;
item->TouchBits = NO_JOINT_BITS;
item->Flags |= TRIGGERED;
if (flags & ONESHOT)
@ -408,6 +407,7 @@ void Trigger(short const value, short const flags)
}
item->Status = ITEM_ACTIVE;
item->TouchBits = NO_JOINT_BITS;
item->DisableInterpolation = true;
}
}