Skip to content

Commit

Permalink
Semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
rparrett committed Dec 23, 2024
1 parent 6766785 commit 788352b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/spawn_despawn_tilemap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ fn despawn_map(mut commands: Commands, mut maps: Query<(Entity, &mut TileStorage

commands.entity(tilemap_entity).despawn_recursive();
for entity in tile_storage.drain() {
commands.entity(entity).despawn()
commands.entity(entity).despawn();
}
}

Expand Down

0 comments on commit 788352b

Please sign in to comment.