diff --git a/source/game/items/StarInspectionTool.cpp b/source/game/items/StarInspectionTool.cpp index f3e9586..dc16f64 100644 --- a/source/game/items/StarInspectionTool.cpp +++ b/source/game/items/StarInspectionTool.cpp @@ -132,7 +132,7 @@ InspectionTool::InspectionResult InspectionTool::inspect(Vec2F const& position) WorldGeometry geometry = world()->geometry(); - for (auto& entity : world()->query(RectF::withCenter(position, Vec2F::filled(FLT_EPSILON)), [&](InspectableEntityPtr const& entity) { + for (auto& entity : world()->query(RectF::withCenter(position, Vec2F()), [&](InspectableEntityPtr const& entity) { if (entity->entityType() == EntityType::Object) return false; else if (!geometry.rectContains(entity->metaBoundBox().translated(entity->position()), position))