Skip to content

Commit

Permalink
Speed multiplier fix for summary.
Browse files Browse the repository at this point in the history
  • Loading branch information
Smoren committed May 6, 2024
1 parent 4cefcc7 commit 02bbd3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/summary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export class SummaryManager implements SummaryManagerInterface {
}

noticeAtom(atom: AtomInterface, worldConfig: WorldConfig) {
const speed = atom.speed.abs * worldConfig.SPEED;
const speed = atom.speed.abs;

this.stepManager.buffer.ATOMS_COUNT[0]++;
this.stepManager.buffer.ATOMS_MEAN_SPEED[0] += speed;
Expand Down

0 comments on commit 02bbd3c

Please sign in to comment.