1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Remove word duplicates in comments and strings, and fix casing and punctuation

This commit is contained in:
Robert Yevdokimov
2024-02-23 14:49:13 -05:00
parent 3abb32671e
commit 13e82094ee
20 changed files with 34 additions and 34 deletions

View File

@@ -421,7 +421,7 @@ Error SceneReplicationInterface::_update_spawn_visibility(int p_peer, const Obje
// Check visibility for each peers.
for (const KeyValue<int, PeerInfo> &E : peers_info) {
if (is_visible) {
// This is fast, since the the object is visible to everyone, we don't need to check each peer.
// This is fast, since the object is visible to everyone, we don't need to check each peer.
if (E.value.spawn_nodes.has(p_oid)) {
// Already spawned.
continue;