Discovery Gaming Community
[Systems] Taus show incorrect region when cloaked. - Printable Version

+- Discovery Gaming Community (https://discoverygc.com/forums)
+-- Forum: Discovery Development (https://discoverygc.com/forums/forumdisplay.php?fid=7)
+--- Forum: Discovery Mod General Discussion (https://discoverygc.com/forums/forumdisplay.php?fid=37)
+---- Forum: Discovery Mod Bug Reports (https://discoverygc.com/forums/forumdisplay.php?fid=573)
+----- Forum: Fixed or invalid (https://discoverygc.com/forums/forumdisplay.php?fid=574)
+----- Thread: [Systems] Taus show incorrect region when cloaked. (/showthread.php?tid=208956)



[Systems] Taus show incorrect region when cloaked. - Leo - 08-16-2025

Type: Systems
Bug: When cloaked, shows Omega Border Worlds

Reproduction Steps:
  • Cloak in Tau-23
  • Look at Player List API on the forums
  • Question if you have a JD capable of jumping from Tau-23 to Omegas.

Additional Information: link

Do not repeat this template for unrelated bugs, each needs their own thread.


RE: [Systems] Taus show incorrect region when cloaked. - Eternal.Journey - 08-17-2025

To add to the above - It is also something I noticed today when I was cloaked in Alaska (Do Not Ask). Whenever cloaked with a Nomad Hybrid Cloak today (The ship I was using is Wilde.Walkuere, in case it's related to that) and this bug I've noticed before, too. Forgot about until now, and tested it again. Sure enough, Cloaked in "Liberty" region listed me in "Liberty", "Omega Border Worlds" in the Player List API.


RE: [Systems] Taus show incorrect region when cloaked. - Alex. - 08-25-2025

I believe the API used on the forums shows the text for the system nickname written to player_cloak_status.json by the game server. So this is probably some FLHook config somewhere.


RE: [Systems] Taus show incorrect region when cloaked. - Alex. - 08-25-2025

Yeah it's the cloak.cfg [PlayerListCloak] "mask" items. Tau-23 is bw08 which is configured to map to EW63 which is "Taus" though...


RE: [Systems] Taus show incorrect region when cloaked. - Alex. - 08-25-2025

Cloaked in T-23, in-game player list showed "Taus", https://discoverygc.com/forums/api_interface.php?action=players_online shows a system of "Taus" but with a region of "Omega Border Worlds"


RE: [Systems] Taus show incorrect region when cloaked. - Alex. - 08-25-2025

Quote:MariaDB [dgcserver]> select * from regions;
| id | name |
+----+----------------------+
| 1 | Unknown |
| 2 | Liberty Space |
| 3 | Bretonia Space |
| 4 | Kusari Space |
| 5 | Rheinland Space |
| 6 | Gallia Space |
| 7 | Tau Border Worlds |
| 8 | Omega Border Worlds |
| 9 | Sigma Border Worlds |
| 10 | Gallic Border Worlds |
| 11 | Independent Worlds |
| 12 | North Edge Worlds |
| 13 | South Edge Worlds |
| 14 | Nomad Worlds |
| 15 | Uncharted Space |

| id | region_id | nickname | name | id | name |
+-----+-----------+------------+-----------------------------+----+----------------------+
| 10 | 1 | BR10 | New London Atmosphere | 1 | Unknown |
| 30 | 1 | BW14 | Bretonia | 1 | Unknown |
| 60 | 1 | EW85 | Omegas | 1 | Unknown |
| 154 | 1 | CA01 | Rheinland | 1 | Unknown |
| 111 | 4 | KU17 | Sigmas | 4 | Kusari Space |
| 142 | 5 | RH12 | Omicrons | 5 | Rheinland Space |
| 27 | 8 | BW11 | Liberty | 8 | Omega Border Worlds |
| 56 | 8 | EW19 | Gallia | 8 | Omega Border Worlds |
| 59 | 8 | EW63 | Taus | 8 | Omega Border Worlds |
| 43 | 15 | EW05 | Kusari | 15 | Uncharted Space |
| 57 | 15 | EW37 | Ind. Worlds | 15 | Uncharted Space |

So ran this to fix:
Quote:update systems set region_id = 11 where name = 'Ind. Worlds';
update systems set region_id = 4 where name = 'Kusari';
update systems set region_id = 7 where name = 'Taus';
update systems set region_id = 6 where name = 'Gallia';
update systems set region_id = 2 where name = 'Liberty';
update systems set region_id = 12 where name = 'Omicrons';
update systems set region_id = 9 where name = 'Sigmas';
update systems set region_id = 5 where name = 'Rheinland';
update systems set region_id = 8 where name = 'Omegas';
update systems set region_id = 3 where name = 'Bretonia';
update systems set region_id = 3 where name = 'New London Atmosphere';