Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
hazae41 committed Mar 17, 2023
1 parent f3df5cd commit 639668e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mods/core/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,8 @@ export class Core extends Ortho<string, State | undefined> {
}
}

next.optimistic = Boolean(optimisers.size)

if (Time.isBefore(next.time, current?.time))
return current

Expand All @@ -290,8 +292,6 @@ export class Core extends Ortho<string, State | undefined> {
if (equals(next.data, current?.data))
next.data = current?.data

next.optimistic = Boolean(optimisers.size)

if (Equals.shallow(next, current))
return current

Expand Down

0 comments on commit 639668e

Please sign in to comment.