-
-
Notifications
You must be signed in to change notification settings - Fork 21.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix documentation in MultiplayerAPIExtension #84226
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, see the style nitpick (which should let this pass CI).
Thanks for looking into this 👍 🏆
Looks good! Could you squash the commits? See PR workflow for instructions. |
Commits squashes, thanks for the link. |
Last adjustment, could you amend the commit message so that the title is "Fix documentation in MultiplayerAPIExtension" instead of the current "Update doc/classes/MultiplayerAPIExtension.xml"? And you can probably drop the line making @Faless a co-author, he just provided some style fix suggestions. |
Fix documentation in MultiplayerAPIExtension.xml In implementing a MultiplayerAPIExtension, I found that the example from documentation did not function even in the Multiplayer tutorial example. Eventually, I found that the issue was that base_multiplayer will not poll unless told to by the LogMultiplayer implementation. I also corrected a spelling issue and a few out-of-date return types.
Updated Thanks for the help on doing a PR, I haven't done it for public repos before. |
Thanks! And congrats for your first merged Godot contribution 🎉 |
In implementing a MultiplayerAPIExtension, I found that the example from documentation did not function even in the Multiplayer tutorial example.
Eventually, I found that the issue was that base_multiplayer will not poll unless told to by the LogMultiplayer implementation. With my changes, the example code compiles and functions in that project in 4.1.
I also corrected a spelling issue and a few out-of-date return types.