diff options
author | robinsch <robinsch@users.noreply.github.com> | 2024-02-09 07:39:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-09 07:39:38 +0100 |
commit | dc0b176eb2a77f383955a04cb948b99e581af158 (patch) | |
tree | bf26ca082f0973bc21b228292fb33249559bfc48 | |
parent | f2f29c07a6d1aef6d89b23ec30431e5c00c7b488 (diff) |
Prevent sun being affected by LightParams.dbc
-rw-r--r-- | Patcher/Patcher.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Patcher/Patcher.cpp b/Patcher/Patcher.cpp index 5c370d5..c801f0b 100644 --- a/Patcher/Patcher.cpp +++ b/Patcher/Patcher.cpp @@ -100,7 +100,7 @@ int main(int argc, char** argv) // prevents sun and moon color from being affected by LightParams.dbc // better support for planet colors when using darker night mods - write_pos<uint8_t>(0x2F2B77, 0xEB); + write_pos<uint8_t>(0x2F2B54, 0xEB); write_pos<uint8_t>(0x2F2B77, 0xEB); // patch area trigger timer to be more precise (250ms -> 50ms) |