Skip to content
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

Fixed issue where dispensing items did not work with a dedicated server. #1037

Conversation

Ryan089
Copy link
Contributor

@Ryan089 Ryan089 commented Feb 24, 2023

Summary

Dispensing items now functions when playing with a dedicated server.

Technical Notes

Interactions run on the server; however, the dispense product interaction Start method called CmdDispenseProduct (a ServerRPC which can only run on clients). This method simply calls DispenseProduct, which is a server-side method only. Therefore, only a host (i.e. Client and Server) could run the interaction. Issue resolved by calling DispenseProduct directly from the Start method.

Fixes

Closes #1031

Copy link
Contributor

@TaylorNAlbarnaz TaylorNAlbarnaz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

works well

@TaylorNAlbarnaz TaylorNAlbarnaz merged commit 0c7c036 into RE-SS3D:develop Feb 24, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

In Server only mode, dispense interaction doesn't work
2 participants