diff --git a/tutorials/networking/high_level_multiplayer.rst b/tutorials/networking/high_level_multiplayer.rst index 45c92230ec8..6515c969722 100644 --- a/tutorials/networking/high_level_multiplayer.rst +++ b/tutorials/networking/high_level_multiplayer.rst @@ -388,7 +388,7 @@ Example bomb code: :: for p in bodies_in_area: - if p.has_method("exploded"): + if p.is_network_master(): p.rpc("exploded", bomb_owner) Example player code: