added powered update interval

This commit is contained in:
Evil Factory
2022-05-05 13:18:50 -03:00
parent f132fdb36e
commit c8ec13fb56
2 changed files with 13 additions and 1 deletions
@@ -67,12 +67,19 @@ namespace Barotrauma
set { MapEntity.GapUpdateInterval = value; }
}
public int poweredUpdateInterval
{
get { return MapEntity.PoweredUpdateInterval; }
set { MapEntity.PoweredUpdateInterval = value; }
}
public int characterUpdateInterval
{
get { return Character.CharacterUpdateInterval; }
set { Character.CharacterUpdateInterval = value; }
}
public HashSet<Item> updatePriorityItems = new HashSet<Item>();
public HashSet<Character> updatePriorityCharacters = new HashSet<Character>();