Removed PF support on Character

This commit is contained in:
NotAlwaysTrue
2026-01-16 17:21:39 +08:00
parent e24024cbb2
commit 086f45510f
2 changed files with 3 additions and 16 deletions
@@ -841,7 +841,6 @@ namespace Barotrauma
// Item update (Item.Update() is not thread-safe and must be executed on the main thread)
Item.UpdatePendingConditionUpdates(deltaTime);
float scaledDeltaTime = deltaTime * MapEntityUpdateInterval;
Item lastUpdatedItem = null;
try
@@ -852,7 +851,7 @@ namespace Barotrauma
try
{
lastUpdatedItem = item;
item.Update(scaledDeltaTime, cam);
item.Update(deltaTime, cam);
}
finally
{