this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix bug in guidebook code (#643)

# Objective

Fix the incorrect code in the guidebook setup chapter.

# Solution

Change `visible_entity_layers.insert(layer);` to
`visible_entity_layers.0.insert(layer);`

authored by

Cheezer1656 and committed by
GitHub
a2efd58f 7d1c4273

+1 -1
+1 -1
website/book/1-getting-started/setup.md
··· 86 86 87 87 layer_id.0 = layer; 88 88 visible_chunk_layer.0 = layer; 89 - visible_entity_layers.insert(layer); 89 + visible_entity_layers.0.insert(layer); 90 90 pos.set([0.5, 65.0, 0.5]); 91 91 *game_mode = GameMode::Creative; 92 92 }