fix: stupid

This commit is contained in:
Tropical
2026-03-06 20:39:58 -06:00
parent 6131826226
commit 653a2c4289
68 changed files with 118 additions and 118 deletions

View File

@@ -29,7 +29,7 @@ bool Sensing::canSee(std::shared_ptr<Entity> target)
//util.Timer.push("canSee");
bool canSee = mob->canSee(target);
//util.Timer.pop();
if (canSee) seen.push_back(std::<Entity>(target));
else unseen.push_back(std::<Entity>(target));
if (canSee) seen.push_back(std::weak_ptr<Entity>(target));
else unseen.push_back(std::weak_ptr<Entity>(target));
return canSee;
}