Changes occurrences of recieve in code to receive (#80065)

## About The Pull Request

I've stumbled across this enough to finally go through the entire
codebase and fix it. I left out changelogs simply because rewriting
history logs is bad.
## Why It's Good For The Game

I find it pretty annoying because I stumble across words that are
misspelled for a few seconds, and I'm likely not the only one who feels
like this. Less spelling mistakes in code are better.
## Changelog
🆑
spellcheck: Occurrences of "recieve" has been changed to "receive".
/🆑
This commit is contained in:
distributivgesetz
2023-12-02 22:50:57 +01:00
committed by GitHub
parent 130dcc6de9
commit f8b41f9442
61 changed files with 97 additions and 97 deletions

View File

@@ -803,7 +803,7 @@ function game_server_send($addr, $port, $str) {
$bytessent += $result;
}
/* --- Idle for a while until recieved bytes from game server --- */
/* --- Idle for a while until received bytes from game server --- */
$result = socket_read($server, 10000, PHP_BINARY_READ);
socket_close($server); // we don't need this anymore