RNG Source
When a game is started or loaded from a save slot, the In-Game random seed is reset. This can happen in two different ways. The first approach uses the clock of the system the game is running on to come up with a seed value that changes over time. This approach can make randomness feel more variable. The second approach is to always use the world seed value. This approach make the In-Game RNG consistent for each seed which can open up the possibility of making a TAS that doesn't constantly desync.
| Bit | Description |
|---|---|
| 0 | Use the Current Time |
| 1 | Use the World Seed |
This field is part of the Seed Code.