Skip to content

Commit

Permalink
Also removed the last instance of ticker that I forgot about.
Browse files Browse the repository at this point in the history
  • Loading branch information
blockmath committed Jun 24, 2024
1 parent ebb79ad commit 7817d3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/src/sim.rs
Original file line number Diff line number Diff line change
Expand Up @@ -368,9 +368,9 @@ impl Sim {
self.dirty_nodes.insert(position.node);
}

for (position, ticker) in pending_blinker_spawns {
for (position, blinker) in pending_blinker_spawns {
let id = self.new_id();
let entity = self.world.spawn((id, position, ticker));
let entity = self.world.spawn((id, position, blinker));
self.graph_entities.insert(position.node, entity);
self.entity_ids.insert(id, entity);
self.spawns.push(entity);
Expand Down

0 comments on commit 7817d3a

Please sign in to comment.