Skip to content

Commit 118d0a6

Browse files
committed
Roadmap: record live Sandbox acceptance of parcels + estate; tidy warning
Note the 2026-07-25 live Firestorm acceptance on Sandbox for the parcel and estate work (About Land, Parcel ID, landmark, landing point, subdivide/join overlay, object return, Set Home, Region/Estate/Covenant tabs). Parenthesize an && within || to silence a gcc -Wparentheses warning (no behaviour change).
1 parent 2d2e29c commit 118d0a6

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

docs/ROADMAP.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,11 @@ Falcon LSL scripting foundation.
204204
join with `ParcelDivide`/`ParcelJoin`, and manage access/ban lists via
205205
`ParcelAccessListRequest`/`Update`, all persisted in region SQLite. Per-parcel
206206
WindLight environment is deferred to the estate/region settings work below.
207+
Live Firestorm acceptance on the Sandbox Region (2026-07-25): About Land shows
208+
the owner, area, and resolved Parcel ID (`RemoteParcelRequest`); "Landmark This
209+
Place", Set Landing Point (with snapshot and teleport), subdivide/join with the
210+
boundary overlay, the Objects tab with live object return, and Set Home to Here
211+
(with confirmation) all work.
207212
- [x] Enforce build, rez, entry, script, and object-return policy at authoritative
208213
boundaries. Build/rez (CreateObjects), script execution (AllowOtherScripts),
209214
teleport entry and continuous walk-in ejection (ban/access lists plus
@@ -225,7 +230,9 @@ Falcon LSL scripting foundation.
225230
flags. Estate bans and private-estate access gate region entry; estate owner and
226231
managers bypass parcel and estate restrictions. Viewer-driven terrain-texture
227232
settings (`setregionterrain`), region restart, and estate kick/teleport-home
228-
admin actions remain.
233+
admin actions remain. Live Firestorm acceptance on the Sandbox Region
234+
(2026-07-25): the Region tab, Estate tab (My Estate / owner Jim Tarber), and
235+
Covenant tab populate correctly.
229236
- [ ] Apply permissions recursively and consistently to linksets, object
230237
contents, attachments, and inventory transfers.
231238

region/src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3428,7 +3428,7 @@ int main(int argc, char* argv[]) {
34283428
return parsed;
34293429
};
34303430
const bool manager = is_estate_manager(agent);
3431-
const bool owner = !region_owner_id.empty() && region_owner_id == agent ||
3431+
const bool owner = (!region_owner_id.empty() && region_owner_id == agent) ||
34323432
(region_estate && region_estate->owner_id == agent);
34333433
const auto& method = estate_message->method;
34343434
if (method == "getinfo") {

0 commit comments

Comments
 (0)