You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 20, 2022. It is now read-only.
For some api stuff we should make iterators that work like: for player in Players:GetPlayers() do
instead of what we currently have: for player_uid, player in pairs(Players:GetPlayers()) do
Since iterator code is very unreadable, every place where we make an iterator like this, we should provide an example usage as a comment above the function declaration
The text was updated successfully, but these errors were encountered:
For some api stuff we should make iterators that work like:
for player in Players:GetPlayers() do
instead of what we currently have:
for player_uid, player in pairs(Players:GetPlayers()) do
Since iterator code is very unreadable, every place where we make an iterator like this, we should provide an example usage as a comment above the function declaration
The text was updated successfully, but these errors were encountered: