Increase view radius, remove radius parameter from get_tangibles_near

This commit is contained in:
2026-06-08 14:58:44 -04:00
parent 536abb2231
commit fa7dcdcb0d
7 changed files with 14 additions and 14 deletions

View File

@@ -61,10 +61,10 @@ int64 FlxLockedWrapper::GetActor() {
return Lockable.Wrapper.get_actor_id(Get());
}
IdView FlxLockedWrapper::GetNear(int64 id, double rx, double ry, double rz) {
IdView FlxLockedWrapper::GetNear(int64 id) {
uint32 size;
int64* data;
Lockable.Wrapper.get_tangibles_near(Get(), id, rx, ry, rz, &size, (int64_t**)&data);
Lockable.Wrapper.get_tangibles_near(Get(), id, &size, (int64_t**)&data);
return IdView(data, size);
}