File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -667,7 +667,7 @@ void MovableMan::AddActor(Actor* actorToAdd) {
667
667
}
668
668
actorToAdd->NotResting ();
669
669
actorToAdd->NewFrame ();
670
- actorToAdd->SetAge (g_TimerMan. GetDeltaTimeMS () * - 1 . 0f );
670
+ actorToAdd->SetAge (0 );
671
671
}
672
672
673
673
{
@@ -695,7 +695,7 @@ void MovableMan::AddItem(HeldDevice* itemToAdd) {
695
695
}
696
696
itemToAdd->NotResting ();
697
697
itemToAdd->NewFrame ();
698
- itemToAdd->SetAge (g_TimerMan. GetDeltaTimeMS () * - 1 . 0f );
698
+ itemToAdd->SetAge (0 );
699
699
}
700
700
701
701
std::lock_guard<std::mutex> lock (m_AddedItemsMutex);
@@ -718,7 +718,7 @@ void MovableMan::AddParticle(MovableObject* particleToAdd) {
718
718
// TODO consider moving particles out of grass. It's old code that was removed because it's slow to do this for every particle.
719
719
particleToAdd->NotResting ();
720
720
particleToAdd->NewFrame ();
721
- particleToAdd->SetAge (g_TimerMan. GetDeltaTimeMS () * - 1 . 0f );
721
+ particleToAdd->SetAge (0 );
722
722
}
723
723
if (particleToAdd->IsDevice ()) {
724
724
std::lock_guard<std::mutex> lock (m_AddedItemsMutex);
You can’t perform that action at this time.
0 commit comments