fix: access to deleted Sensor

This commit is contained in:
MihailRis
2024-08-01 17:10:30 +03:00
parent f8907f7db1
commit 50a388c539
3 changed files with 12 additions and 0 deletions
+4
View File
@@ -273,3 +273,7 @@ bool PhysicsSolver::isBlockInside(int x, int y, int z, Block* def, blockstate st
}
return false;
}
void PhysicsSolver::removeSensor(Sensor* sensor) {
sensors.erase(std::remove(sensors.begin(), sensors.end(), sensor), sensors.end());
}