Fix bug where Transition planes would build up ticks and break network ticking.
This commit is contained in:
Vendored
+6
@@ -113,8 +113,14 @@ public class TickManagerCache implements ITickManager
|
||||
sleeping.remove( node );
|
||||
awake.put( node, tt );
|
||||
|
||||
// configure sort.
|
||||
tt.lastTick = tt.lastTick - tt.request.maxTickRate;
|
||||
tt.current_rate = tt.request.minTickRate;
|
||||
|
||||
// prevent dupes and tick build up.
|
||||
upcomingTicks.remove( tt );
|
||||
upcomingTicks.add( tt );
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user