Fixed player avoidance code.

Speedup network message handling.
This commit is contained in:
joint 2019-08-12 14:16:28 +03:00 committed by jeefo
commit 9947e41549
26 changed files with 2398 additions and 2294 deletions

View file

@ -50,7 +50,7 @@ public:
rhs.reset ();
}
Array (std::initializer_list <T> list) {
Array (const std::initializer_list <T> &list) {
for (const auto &elem : list) {
push (elem);
}