mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-04-28 15:57:59 +03:00
Fixed #1500
This commit is contained in:
parent
364458d68a
commit
dbaaf9fd5e
2 changed files with 2 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue