This commit is contained in:
David Markowitz
2026-06-17 01:56:18 -07:00
parent 105ddf4e1d
commit 47535f3c3a
2 changed files with 8 additions and 8 deletions

View File

@@ -104,7 +104,7 @@ void Zone::LoadZoneIntoMemory() {
for (const Path& path : m_Paths) {
if (path.pathType != PathType::Spawner) continue;
SpawnerInfo info{};
for (int i = 0; i < path.pathWaypoints.size(); i++) {
for (size_t i = 0; i < path.pathWaypoints.size(); i++) {
const auto& waypoint = path.pathWaypoints[i];
SpawnerNode* node = new SpawnerNode();
node->position = waypoint.position;