We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Packet type has method sendToList defined, but this method does not exist (should be sendToPlayers). It is also missing sendToAllExcept.
sendToList
sendToAllExcept
Corrected type:
type Packet<T> = { sendToAll: (data: T) -> (), sendTo: (data: T, target: Player) -> (), sendToPlayers: (data: T, targets: { Player }) -> (), sendToAllExcept: (data: T, except: Player) -> (), wait: () -> T, send: (data: T, target: Player?) -> (), listen: (callback: (data: T, player: Player?) -> ()) -> (), }
The text was updated successfully, but these errors were encountered:
Solved in the next version
Sorry, something went wrong.
Still an issue as of 0.4.2 (worth noting I am downloading the rbxm, maybe that isn't updated)
sendToAllExcept wasn't defined. Oops
Also sendToList should be sendToPlayers.
No branches or pull requests
Packet type has method
sendToList
defined, but this method does not exist (should be sendToPlayers). It is also missingsendToAllExcept
.Corrected type:
The text was updated successfully, but these errors were encountered: