chatlib: do not send chat messages to controlled bots
graph: first try more memory friendly bsp size check build: restore ssse3 & ssse3 instructions (use nosmid version if needed) Co-Authored-By: Max <161382234+dyspose@users.noreply.github.com>
This commit is contained in:
parent
54647c7eca
commit
855fb903b6
13 changed files with 76 additions and 41 deletions
|
|
@ -188,9 +188,8 @@ public:
|
|||
m_path[0] = 0;
|
||||
}
|
||||
|
||||
void init (int32_t length) {
|
||||
const auto allocSize = static_cast <uint32_t> (length);
|
||||
m_path = cr::makeUnique <int32_t[]> (allocSize);
|
||||
void init (size_t length) {
|
||||
m_path = cr::makeUnique <int32_t[]> (length);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
@ -320,7 +319,7 @@ private:
|
|||
Fight m_fightStyle {}; // combat style to use
|
||||
CollisionState m_collisionState {}; // collision State
|
||||
FindPath m_pathType {}; // which pathfinder to use
|
||||
uint8_t m_enemyParts {}; // visibility flags
|
||||
int8_t m_enemyParts {}; // visibility flags
|
||||
uint16_t m_modelMask {}; // model mask bits
|
||||
UniquePtr <class AStarAlgo> m_planner {};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue