summaryrefslogtreecommitdiffstats
path: root/modules/multiplayer
diff options
context:
space:
mode:
authorJordyfel <jord_id@abv.bg>2024-08-12 14:57:02 +0300
committerRémi Verschelde <rverschelde@gmail.com>2024-09-16 16:45:24 +0200
commit6073b86e7147dc0a997919dfdd43ab29ea4cca83 (patch)
tree96902559e2aaf1ef9393da399d7d15726df627da /modules/multiplayer
parentb84dbab84d1913934f0e301b137cc6892666813c (diff)
downloadredot-engine-6073b86e7147dc0a997919dfdd43ab29ea4cca83.tar.gz
Fix typo in MultiplayerSpawner doc
(cherry picked from commit 8c626f23c1452eb72a41bcb6a6de9414940418d5)
Diffstat (limited to 'modules/multiplayer')
-rw-r--r--modules/multiplayer/doc_classes/MultiplayerSpawner.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/multiplayer/doc_classes/MultiplayerSpawner.xml b/modules/multiplayer/doc_classes/MultiplayerSpawner.xml
index 3da245f806..b620292519 100644
--- a/modules/multiplayer/doc_classes/MultiplayerSpawner.xml
+++ b/modules/multiplayer/doc_classes/MultiplayerSpawner.xml
@@ -48,11 +48,11 @@
</methods>
<members>
<member name="spawn_function" type="Callable" setter="set_spawn_function" getter="get_spawn_function">
- Method called on all peers when for every custom [method spawn] requested by the authority. Will receive the [code]data[/code] parameter, and should return a [Node] that is not in the scene tree.
+ Method called on all peers when a custom [method spawn] is requested by the authority. Will receive the [code]data[/code] parameter, and should return a [Node] that is not in the scene tree.
[b]Note:[/b] The returned node should [b]not[/b] be added to the scene with [method Node.add_child]. This is done automatically.
</member>
<member name="spawn_limit" type="int" setter="set_spawn_limit" getter="get_spawn_limit" default="0">
- Maximum nodes that is allowed to be spawned by this spawner. Includes both spawnable scenes and custom spawns.
+ Maximum number of nodes allowed to be spawned by this spawner. Includes both spawnable scenes and custom spawns.
When set to [code]0[/code] (the default), there is no limit.
</member>
<member name="spawn_path" type="NodePath" setter="set_spawn_path" getter="get_spawn_path" default="NodePath(&quot;&quot;)">