docs(svsimloader): update data_dumps path references for reorg

Mirror of the outer-repo data_dumps/ reorganization: README now points
at data_dumps/captures/ for traffic_prod.ndjson; the GachaExchangeSweep
comment naming the tradeables capture follows the same path rewrite.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
gamer147
2026-05-31 01:22:59 -04:00
parent d4c4a1386f
commit 44c370d7a8
2 changed files with 2 additions and 2 deletions

View File

@@ -79,7 +79,7 @@ BepInEx/svsim-captures/<yyyy-MM-dd_HH-mm-ss>_<host>/
The capture hook decrypts each response before writing, so `traffic.ndjson` is always readable JSON regardless of whether the underlying connection used AES. `DisableEncryption` is therefore not required to make captures inspectable; it only affects what flows over the wire itself.
The `traffic_prod.ndjson` checked into `data_dumps/` is a curated paste of one such session, used as the seed source for `SVSim.Bootstrap/Data/prod-captures/`.
The `traffic_prod.ndjson` checked into `data_dumps/captures/` is a curated paste of one such session, used as the seed source for `SVSim.Bootstrap/Data/prod-captures/`.
## Code layout

View File

@@ -134,7 +134,7 @@ internal static class GachaExchangeSweep
{
int id = ids[i];
// odds_gacha_id and parent_gacha_id observed equal in the natural-flow capture
// (data_dumps/traffic_prod_tradeables_capture.ndjson). Pass the same value twice.
// (data_dumps/captures/traffic_prod_tradeables_capture.ndjson). Pass the same value twice.
var task = new GachaPointExchangeInfoTask();
task.SetParameter(id, id);
Plugin.Log.LogInfo($"GachaExchangeSweep: [{i + 1}/{ids.Count}] pack_id={id}");