This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
client_server_detection [2019/09/05 23:54] korshun |
client_server_detection [2019/09/05 23:54] (current) korshun [Writing robust multiplayer code] |
||
---|---|---|---|
Line 53: | Line 53: | ||
// writing if (IsClient()) would incorrectly display the warning in singleplayer. | // writing if (IsClient()) would incorrectly display the warning in singleplayer. | ||
if (!IsServer()) | if (!IsServer()) | ||
- | printbold(s:" | + | printbold(s:" |
| | ||
... | ... | ||
Line 62: | Line 62: | ||
// writing if (IsServer()) would incorrectly display the warning in singleplayer. | // writing if (IsServer()) would incorrectly display the warning in singleplayer. | ||
if (!IsClient()) | if (!IsClient()) | ||
- | printbold(s:" | + | printbold(s:" |
| | ||
... | ... |